aboutsummaryrefslogtreecommitdiff
path: root/internal/game/action_search.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-15 02:57:35 -0400
committerhistoria <[not public]>2026-06-15 02:58:50 -0400
commit4cc1ddcd185509080b4b3e15d1646567edd51c9d (patch)
tree2a564846ad4fd159a2d7e55451bfa9569fe8c0b8 /internal/game/action_search.go
parent445c4612cc5cf2c226f85894b6ad1e2419a374e2 (diff)
downloadthehouseoficarus-4cc1ddcd185509080b4b3e15d1646567edd51c9d.tar.gz
removed game speed for being broken and an antifeature anyway. added color support.
Diffstat (limited to 'internal/game/action_search.go')
-rw-r--r--internal/game/action_search.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/game/action_search.go b/internal/game/action_search.go
index 07bae44..e9d3d46 100644
--- a/internal/game/action_search.go
+++ b/internal/game/action_search.go
@@ -4,6 +4,7 @@ import (
"fmt"
"thirdcollapse/internal/action"
+ "thirdcollapse/internal/engine"
"thirdcollapse/internal/net"
"thirdcollapse/internal/player"
)
@@ -24,7 +25,7 @@ func (g *Game) startSearch(sess *net.Session, p *player.Player, itemID string, s
Type: "search",
TargetID: itemID,
TargetName: def.Name,
- WaitLeft: g.computeTicks(ticks),
+ WaitLeft: engine.ToTicks(ticks),
Data: map[string]any{
"item_id": itemID,
"slot_idx": slotIdx,