diff --git a/src/node/tests/zipped_testdata.zip b/src/node/tests/zipped_testdata.zip index db25aec9..d581af7b 100644 Binary files a/src/node/tests/zipped_testdata.zip and b/src/node/tests/zipped_testdata.zip differ diff --git a/src/parser/src/parser_threads.rs b/src/parser/src/parser_threads.rs index 7853c688..ea74cdb7 100644 --- a/src/parser/src/parser_threads.rs +++ b/src/parser/src/parser_threads.rs @@ -72,10 +72,11 @@ impl ParserThread { } fn packet_orderer(&self, packet: &NetmessageType) -> i32 { match packet { - svc_PacketEntities => 0, - svc_CreateStringTable => 1, - svc_UpdateStringTable => 2, - _ => 100, + svc_CreateStringTable => 1001, + svc_UpdateStringTable => 1000, + GE_Source1LegacyGameEvent => 999, + svc_PacketEntities => 90, + _ => 0, } } pub fn parse_packet(&mut self, bytes: &[u8]) -> Result<(), DemoParserError> { diff --git a/src/python/tests/zipped_testdata.zip b/src/python/tests/zipped_testdata.zip index c55effd7..61630aa8 100644 Binary files a/src/python/tests/zipped_testdata.zip and b/src/python/tests/zipped_testdata.zip differ