diff options
| author | historia <[not public]> | 2026-07-17 17:12:39 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-07-17 17:12:39 -0400 |
| commit | 6e6c4a157564100249bb58f412485055bb2d10cf (patch) | |
| tree | d457414b989e737287384f87004bffa70ac23886 /cmd/thoi/main.go | |
| parent | e09e7badbc722f580a9d7674c46d6ff3cc320b26 (diff) | |
| download | thehouseoficarus-6e6c4a157564100249bb58f412485055bb2d10cf.tar.gz | |
feat: implement run energy, shorten walk time to 1-2 ticks between rooms, update graceful set
Diffstat (limited to 'cmd/thoi/main.go')
| -rw-r--r-- | cmd/thoi/main.go | 3 |
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() |
