Skip to content

Commit 203c3b0

Browse files
committed
game desc dump for network protocol 4070
1 parent b3373cb commit 203c3b0

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed
15 KB
Binary file not shown.

pkg/demoinfocs/s2_commands.go

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,10 +379,15 @@ func getGameEventListBinForProtocol(networkProtocol int) ([]byte, error) {
379379
switch {
380380
case networkProtocol < 13992:
381381
return eventListFolder.ReadFile("event-list-dump/13990.bin")
382-
case networkProtocol >= 13992 && networkProtocol < 14023:
382+
383+
case networkProtocol < 14023:
383384
return eventListFolder.ReadFile("event-list-dump/13992.bin")
384-
default:
385+
386+
case networkProtocol < 14069:
385387
return eventListFolder.ReadFile("event-list-dump/14023.bin")
388+
389+
default:
390+
return eventListFolder.ReadFile("event-list-dump/14070.bin")
386391
}
387392
}
388393

0 commit comments

Comments
 (0)