diff options
| author | historia <[not public]> | 2026-07-01 04:53:56 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-07-01 04:53:56 -0400 |
| commit | bf7c27c2cbf3eb56a0a4c5141e39b152c51614b5 (patch) | |
| tree | 5383c325fafeb34c01ea737a7070402f040fc5af /internal/game/act_use.go | |
| parent | fbe5090ac3325ff8ea6989cdf4515c7f077c975b (diff) | |
| download | thehouseoficarus-bf7c27c2cbf3eb56a0a4c5141e39b152c51614b5.tar.gz | |
feat: admin gui map, item, and objects mostly complete
Diffstat (limited to 'internal/game/act_use.go')
| -rw-r--r-- | internal/game/act_use.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/game/act_use.go b/internal/game/act_use.go index 1e9d8e9..46ca304 100644 --- a/internal/game/act_use.go +++ b/internal/game/act_use.go @@ -84,7 +84,7 @@ func (g *Game) advanceUse(sess *net.Session, p *player.Player) { if cfg.FailMessage != "" { sess.WriteLine(cfg.FailMessage) } - p.Action.WaitLeft = engine.ToTicks(cfg.Wait) + p.Action.WaitLeft = engine.ToTicks(cfg.TicksPerCycle) return } } @@ -137,5 +137,5 @@ func (g *Game) advanceUse(sess *net.Session, p *player.Player) { sess.WriteLine(cfg.EndMessage) } - p.Action.WaitLeft = engine.ToTicks(cfg.Wait) + p.Action.WaitLeft = engine.ToTicks(cfg.TicksPerCycle) } |
