diff options
Diffstat (limited to 'pkg/messages/types/netSetConVar.go')
| -rw-r--r-- | pkg/messages/types/netSetConVar.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/messages/types/netSetConVar.go b/pkg/messages/types/netSetConVar.go index 08042ae..f04f564 100644 --- a/pkg/messages/types/netSetConVar.go +++ b/pkg/messages/types/netSetConVar.go | |||
| @@ -12,7 +12,7 @@ type conVar struct { | |||
| 12 | Value string | 12 | Value string |
| 13 | } | 13 | } |
| 14 | 14 | ||
| 15 | func ParseNetSetConVar(reader *bitreader.ReaderType) NetSetConVar { | 15 | func ParseNetSetConVar(reader *bitreader.Reader) NetSetConVar { |
| 16 | length := reader.TryReadBits(8) | 16 | length := reader.TryReadBits(8) |
| 17 | convars := []conVar{} | 17 | convars := []conVar{} |
| 18 | for count := 0; count < int(length); count++ { | 18 | for count := 0; count < int(length); count++ { |