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

save sendtables by classid

since we only really need to get them by classid
This commit is contained in:
Robin Appelman 2019-08-29 02:39:21 +02:00
commit bf65dffb13
8 changed files with 83 additions and 78 deletions

View file

@ -34,7 +34,7 @@ impl MessageHandler for SendPropAnalyser {
state
.send_tables
.into_iter()
.map(|(_k, v)| ParseSendTable {
.map(|(_, v)| ParseSendTable {
name: v.name,
props: v.props,
needs_decoder: v.needs_decoder,