From d02f0d2cdf67f1445a9ccae86b99a2578adab585 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 10 Jul 2026 17:02:13 -0400 Subject: feat(admin): update search to use standard condition/action framework rather than bespoke implementation --- internal/game/cmd_search.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'internal/game/cmd_search.go') diff --git a/internal/game/cmd_search.go b/internal/game/cmd_search.go index 4122e0a..2c5017e 100644 --- a/internal/game/cmd_search.go +++ b/internal/game/cmd_search.go @@ -40,6 +40,5 @@ func (g *Game) doSearch(sess *net.Session, input string) { } itemID := matches[0].ID - slotIdx := matches[0].Slot - g.startSearch(sess, p, itemID, slotIdx) + g.doSearchItem(sess, p, itemID) } -- cgit v1.2.3