diff options
Diffstat (limited to 'go/client')
| -rw-r--r-- | go/client/game.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/go/client/game.go b/go/client/game.go index 00047d5d..37e44d77 100644 --- a/go/client/game.go +++ b/go/client/game.go @@ -532,7 +532,11 @@ func (g *Game) Update() error { g.hideStore() g.RemoveWidget(g.discardPileView) if g.prompt != nil { - g.prompt.ClearSelections() + if g.prompt.Action().Targets().NoSelections() { + g.removePrompt() + } else { + g.prompt.ClearSelections() + } } } |
