diff options
Diffstat (limited to 'tocltcmds.go')
-rw-r--r-- | tocltcmds.go | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tocltcmds.go b/tocltcmds.go index 5fbe18b..9f8fbd4 100644 --- a/tocltcmds.go +++ b/tocltcmds.go @@ -196,10 +196,10 @@ type ToCltChatMsg struct { type ChatMsgType uint8 const ( - RawMsg ChatMsgType = iota // raw - NormalMsg // normal - AnnounceMsg // announce - SysMsg // sys + RawMsg ChatMsgType = iota // raw + NormalMsg // normal + AnnounceMsg // announce + SysMsg // sys maxMsg ) @@ -650,9 +650,9 @@ type ToCltUpdatePlayerList struct { type PlayerListUpdateType uint8 const ( - InitPlayers PlayerListUpdateType = iota // init - AddPlayers // add - RemovePlayers // remove + InitPlayers PlayerListUpdateType = iota // init + AddPlayers // add + RemovePlayers // remove ) //go:generate stringer -linecomment -type PlayerListUpdateType |