diff options
Diffstat (limited to 'packets/messages/types/NetSplitScreenUser.go')
| -rw-r--r-- | packets/messages/types/NetSplitScreenUser.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packets/messages/types/NetSplitScreenUser.go b/packets/messages/types/NetSplitScreenUser.go index 66a7c85..d4d04b5 100644 --- a/packets/messages/types/NetSplitScreenUser.go +++ b/packets/messages/types/NetSplitScreenUser.go | |||
| @@ -3,11 +3,11 @@ package types | |||
| 3 | import "github.com/pektezol/bitreader" | 3 | import "github.com/pektezol/bitreader" |
| 4 | 4 | ||
| 5 | type NetSplitScreenUser struct { | 5 | type NetSplitScreenUser struct { |
| 6 | Unknown bool | 6 | PlayerSlot bool |
| 7 | } | 7 | } |
| 8 | 8 | ||
| 9 | func ParseNetSplitScreenUser(reader *bitreader.ReaderType) NetSplitScreenUser { | 9 | func ParseNetSplitScreenUser(reader *bitreader.ReaderType) NetSplitScreenUser { |
| 10 | return NetSplitScreenUser{ | 10 | return NetSplitScreenUser{ |
| 11 | Unknown: reader.TryReadBool(), | 11 | PlayerSlot: reader.TryReadBool(), |
| 12 | } | 12 | } |
| 13 | } | 13 | } |