diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-06-08 23:26:43 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-06-08 23:26:43 +0200 |
commit | 6d44ad8335aa249d897aafa0e0b0b4dd3a87d1f8 (patch) | |
tree | b3be7e7d3399b1b83ff50413d59e8b5da18304f3 | |
parent | 996670c4076e3c5cf42d05968d32712434375f18 (diff) | |
download | mt-6d44ad8335aa249d897aafa0e0b0b4dd3a87d1f8.tar.xz |
Fix hud style flags type
-rw-r--r-- | tocltcmds.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tocltcmds.go b/tocltcmds.go index 09cc358..0ac7716 100644 --- a/tocltcmds.go +++ b/tocltcmds.go @@ -123,7 +123,7 @@ func (cmd ToCltKick) String() (msg string) { type ToCltBlkData struct { Blkpos [3]int16 //mt:zstd - Blk MapBlk + Blk MapBlk //mt:end } @@ -431,7 +431,7 @@ type HUD struct { Size [2]int32 ZIndex int16 Text2 string - Style uint32 + Style HUDStyleFlags } type HUDID uint32 |