aboutsummaryrefslogtreecommitdiff
path: root/internal/game/cmd_registry.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/game/cmd_registry.go')
-rw-r--r--internal/game/cmd_registry.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/game/cmd_registry.go b/internal/game/cmd_registry.go
index c4f7700..ea741d9 100644
--- a/internal/game/cmd_registry.go
+++ b/internal/game/cmd_registry.go
@@ -149,7 +149,7 @@ func (g *Game) executeCommand(sess *net.Session, cmd string, args []string, rawI
switch a {
case "gather":
if len(args) == 0 {
- target := g.resolveDefaultTarget(p.RoomID, cmd)
+ target := g.defaultTarget(p.RoomID, cmd)
if target == "" {
sess.WriteLine(fmt.Sprintf("%s what?", cmd))
return
@@ -176,7 +176,7 @@ func (g *Game) executeGather(sess *net.Session, args []string, rawInput string)
p := sess.Player
g.cancelAction(p)
if len(args) == 0 {
- target := g.resolveDefaultTarget(p.RoomID, verb)
+ target := g.defaultTarget(p.RoomID, verb)
if target == "" {
sess.WriteLine(fmt.Sprintf("%s what?", verb))
return