1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 10:14:06 +02:00

table debug

This commit is contained in:
Robin Appelman 2022-04-18 16:53:49 +02:00
commit 626784c0ea

View file

@ -158,6 +158,8 @@ impl<'a> ParserState {
for class in self.server_classes.iter() { for class in self.server_classes.iter() {
if let Some(table) = send_tables.remove(&class.data_table) { if let Some(table) = send_tables.remove(&class.data_table) {
self.send_tables.push(table); self.send_tables.push(table);
} else {
eprintln!("class without table? {} {}", class.name, class.data_table);
} }
} }
} }