diff options
Diffstat (limited to 'internal/game/cmd_get.go')
| -rw-r--r-- | internal/game/cmd_get.go | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/internal/game/cmd_get.go b/internal/game/cmd_get.go index 8237ec9..6f08892 100644 --- a/internal/game/cmd_get.go +++ b/internal/game/cmd_get.go @@ -27,10 +27,7 @@ func (g *Game) doGet(sess *net.Session, input string) { if len(matches) > 1 { 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 } } @@ -149,10 +146,7 @@ func (g *Game) doGetAllNamed(sess *net.Session, input string) { if len(matches) > 1 { 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 } } |
