We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4ab22e commit 0a13854Copy full SHA for 0a13854
pkg/demoinfocs/sendtables2/entity.go
@@ -477,6 +477,12 @@ func (p *Parser) OnPacketEntities(m *msgs2.CSVCMsg_PacketEntities) error {
477
index = next
478
479
cmd = r.readBits(2)
480
+ if cmd == 0 && m.GetHasPvsVisBits() > 0 {
481
+ cmd = r.readBits(2) << 3
482
+ if cmd&0x08 == 8 {
483
+ continue
484
+ }
485
486
if cmd&0x01 == 0 {
487
if cmd&0x02 != 0 {
488
classId = int32(r.readBits(p.classIdSize))
0 commit comments