mirror of
https://github.com/demostf/demo.js
synced 2026-06-04 00:54:14 +02:00
fix parsing pov stringtables
This commit is contained in:
parent
2519a349d5
commit
f66ab3ffaf
3 changed files with 13 additions and 3 deletions
|
|
@ -23,7 +23,9 @@ export function handleStringTable(packet: StringTablePacket, match: Match) {
|
|||
}
|
||||
if (table.name === 'instancebaseline') {
|
||||
for (const instanceBaseLine of table.entries) {
|
||||
saveInstanceBaseLine(instanceBaseLine, match);
|
||||
if (instanceBaseLine) {
|
||||
saveInstanceBaseLine(instanceBaseLine, match);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue