Skip to content

Commit

Permalink
rm debug stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
LaihoE committed Oct 18, 2023
1 parent 6a53241 commit 88d012e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/parser/src/entities.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,8 @@ impl ParserThread {
for field_info in &self.field_infos[..n_updates] {
let result = bitreader.decode(&field_info.decoder, &self.qf_mapper)?;
if field_info.should_parse {
// entity.props.insert(field_info.prop_id as u32, result);
entity.props.insert(field_info.prop_id as u32, result);
}
entity.props.insert(field_info.prop_id as u32, result);
}
}
Ok(n_updates)
Expand Down
4 changes: 1 addition & 3 deletions src/parser/src/sendtables.rs
Original file line number Diff line number Diff line change
Expand Up @@ -653,10 +653,8 @@ impl Parser {
|| my_serializer.name.contains("Grenade")
|| my_serializer.name.contains("Flash")
{
// prop_controller.find_prop_name_paths(&mut my_serializer);
prop_controller.find_prop_name_paths(&mut my_serializer);
}
prop_controller.find_prop_name_paths(&mut my_serializer);

serializers.insert(my_serializer.name.clone(), my_serializer);
}
prop_controller.set_custom_propinfos();
Expand Down

0 comments on commit 88d012e

Please sign in to comment.