1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 10:14:06 +02:00
This commit is contained in:
Robin Appelman 2022-04-21 23:29:33 +02:00
commit 528e4f2230

View file

@ -203,7 +203,7 @@ fn get_send_table(state: &ParserState, class: ClassId) -> Result<&SendTable> {
fn get_entity_for_update(
state: &ParserState,
entity_index: EntityId,
pvs: UpdateType,
update_type: UpdateType,
) -> Result<PacketEntity> {
let class_id = *state
.entity_classes
@ -216,7 +216,7 @@ fn get_entity_for_update(
baseline_props: vec![],
props: Vec::with_capacity(8),
in_pvs: false,
update_type: pvs,
update_type,
serial_number: 0,
delay: None,
})