From 178354c24c9d19ffb6b5547e3eac091b46ed6227 Mon Sep 17 00:00:00 2001 From: andy Date: Mon, 7 Feb 2022 03:05:01 +0000 Subject: [PATCH] add manual flag to RequestQuestList to know which quest npc we're talking to --- src/packet/ship.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/packet/ship.rs b/src/packet/ship.rs index e01463c..210dba6 100644 --- a/src/packet/ship.rs +++ b/src/packet/ship.rs @@ -497,8 +497,9 @@ pub struct ClientCharacterData { pub data: [u8; 2088], } -#[pso_packet(0xA2)] +#[pso_packet(0xA2, manual_flag)] pub struct RequestQuestList { + pub flag: u32, } #[derive(PSOPacketData, Clone, Copy)]