From 6e6c4a157564100249bb58f412485055bb2d10cf Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Fri, 17 Jul 2026 17:12:39 -0400 Subject: feat: implement run energy, shorten walk time to 1-2 ticks between rooms, update graceful set --- cmd/thoi/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmd/thoi/main.go') diff --git a/cmd/thoi/main.go b/cmd/thoi/main.go index 4608536..254db69 100644 --- a/cmd/thoi/main.go +++ b/cmd/thoi/main.go @@ -46,13 +46,14 @@ func main() { defer g.Ticks.Stop() g.Ticks.Subscribe(1, func() bool { - g.MoveTick() g.ProcessQueuedCommands() + g.MoveTick() g.SequenceTick() g.TransientMobTick() g.World.Tick() g.MobStore.Tick() g.RegenTick() + g.EnergyRegenTick() g.DisconnectTick() g.WanderTick() g.SharedDepletionTick() -- cgit v1.2.3