diff options
| author | historia <[not public]> | 2026-07-07 16:24:27 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-07-07 16:24:27 -0400 |
| commit | ab2597b22ccdb71116992aec78080d9858358d04 (patch) | |
| tree | 8beae4060c2831c4a68f92b682b5350cfa1d0afb /internal/player | |
| parent | 3f30fa3eec9c2e2acf9a984ccefb9529a25e688a (diff) | |
| download | thehouseoficarus-ab2597b22ccdb71116992aec78080d9858358d04.tar.gz | |
rename flags to global_flags (differentiate from player_flags)
Diffstat (limited to 'internal/player')
| -rw-r--r-- | internal/player/player.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/player/player.go b/internal/player/player.go index 72eb455..65026e7 100644 --- a/internal/player/player.go +++ b/internal/player/player.go @@ -183,7 +183,7 @@ type Player struct { MoveTicks int `yaml:"-"` MoveDirection string `yaml:"-"` MoveTarget int `yaml:"-"` - MovePendingFlags map[string]any `yaml:"-"` + MovePendingGlobalFlags map[string]any `yaml:"-"` MovePendingPlayerFlags map[string]any `yaml:"-"` VisualTickCurrent int `yaml:"-"` AutotriggerMod string `yaml:"-"` @@ -219,7 +219,7 @@ func (p *Player) ClearMoveState() { p.MoveTicks = 0 p.MoveDirection = "" p.MoveTarget = 0 - p.MovePendingFlags = nil + p.MovePendingGlobalFlags = nil p.MovePendingPlayerFlags = nil } |
