diff options
Diffstat (limited to 'internal/game/act_state.go')
| -rw-r--r-- | internal/game/act_state.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/game/act_state.go b/internal/game/act_state.go index 335ecfb..9ee4d27 100644 --- a/internal/game/act_state.go +++ b/internal/game/act_state.go @@ -19,6 +19,9 @@ func (g *Game) playerActionDisplay(p *player.Player) string { if p.MoveTicks > 0 { return "heading " + p.MoveDirection } + if p.EscapeDir != "" { + return "preparing to flee" + } if len(p.WalkSequence) > 0 { return "walking somewhere with a purpose!" } |
