aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_search.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/game/cmd_search.go')
-rw-r--r--internal/game/cmd_search.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/internal/game/cmd_search.go b/internal/game/cmd_search.go
index d4d2e72..cf37c90 100644
--- a/internal/game/cmd_search.go
+++ b/internal/game/cmd_search.go
@@ -26,10 +26,7 @@ func (g *Game) doSearch(sess *net.Session, input string) {
unique := uniqueItemNames(matches)
if len(unique) > 1 {
- sess.WriteLine("Which one?")
- for _, name := range unique {
- sess.WriteLine(fmt.Sprintf(" - %s", name))
- }
+ g.showWhichOne(sess, matches)
return
}