diff options
Diffstat (limited to 'internal/game/cmd_score.go')
| -rw-r--r-- | internal/game/cmd_score.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/internal/game/cmd_score.go b/internal/game/cmd_score.go index 635c4b4..d4dd823 100644 --- a/internal/game/cmd_score.go +++ b/internal/game/cmd_score.go @@ -124,10 +124,8 @@ func (g *Game) doScore(sess *net.Session) { gap() actionDesc := "Idle" - if as, ok := p.ActionState.(*ActionState); ok && as != nil { - if d := as.Description(); d != "" { - actionDesc = d - } + if d := g.playerActionDisplay(p); d != "" { + actionDesc = d } content("Action: " + actionDesc) |
