diff options
Diffstat (limited to 'packets/packet.go')
| -rw-r--r-- | packets/packet.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packets/packet.go b/packets/packet.go index 23a21e6..b27f2e7 100644 --- a/packets/packet.go +++ b/packets/packet.go | |||
| @@ -44,7 +44,7 @@ func ParsePacket(reader *bitreader.ReaderType) (status int) { | |||
| 44 | Size: int32(reader.TryReadInt32()), | 44 | Size: int32(reader.TryReadInt32()), |
| 45 | } | 45 | } |
| 46 | consoleCmd.Data = reader.TryReadStringLen(int(consoleCmd.Size)) | 46 | consoleCmd.Data = reader.TryReadStringLen(int(consoleCmd.Size)) |
| 47 | //fmt.Printf("[%d] (%d) ConsoleCmd: %s\n", messageTick, messageType, consoleCmd.Data) | 47 | fmt.Printf("[%d] (%d) ConsoleCmd: %s\n", messageTick, messageType, consoleCmd.Data) |
| 48 | return 4 | 48 | return 4 |
| 49 | case 0x05: // TODO: UserCmd - Buttons | 49 | case 0x05: // TODO: UserCmd - Buttons |
| 50 | userCmd := UserCmd{ | 50 | userCmd := UserCmd{ |