aboutsummaryrefslogtreecommitdiff
path: root/cmd/thoi
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-07-17 17:12:39 -0400
committerhistoria <[not public]>2026-07-17 17:12:39 -0400
commit6e6c4a157564100249bb58f412485055bb2d10cf (patch)
treed457414b989e737287384f87004bffa70ac23886 /cmd/thoi
parente09e7badbc722f580a9d7674c46d6ff3cc320b26 (diff)
downloadthehouseoficarus-6e6c4a157564100249bb58f412485055bb2d10cf.tar.gz
feat: implement run energy, shorten walk time to 1-2 ticks between rooms, update graceful set
Diffstat (limited to 'cmd/thoi')
-rw-r--r--cmd/thoi/main.go3
1 files changed, 2 insertions, 1 deletions
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()