summaryrefslogtreecommitdiff
path: root/src/map/intif.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/intif.cpp')
-rw-r--r--src/map/intif.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/map/intif.cpp b/src/map/intif.cpp
index fc34a64..379bb1d 100644
--- a/src/map/intif.cpp
+++ b/src/map/intif.cpp
@@ -743,6 +743,16 @@ RecvResult intif_parse(Session *s, uint16_t packet_id)
intif_parse_PartyLeaderChanged(s, fixed);
break;
}
+ case 0x3829:
+ {
+ Packet_Fixed<0x3829> fixed;
+ rv = recv_fpacket<0x3829, 22>(s, fixed);
+ if (rv != RecvResult::Complete)
+ return rv;
+
+ chrif_parse_preauth(s, fixed);
+ break;
+ }
default:
return RecvResult::Error;
}