aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-09 17:15:13 -0400
committerhistoria <[not public]>2026-06-09 17:15:13 -0400
commit9edc568e16741d443b67fbd23b0d91790085ced9 (patch)
treed54be40531ba124dcf8299f9e94bfba4ece273ae /cmd
parent56be6a3f45830594225a765b406816e6179ccde1 (diff)
downloadthehouseoficarus-9edc568e16741d443b67fbd23b0d91790085ced9.tar.gz
combat, mobs, parsing, toggles, hard disconnect handling
Diffstat (limited to 'cmd')
-rw-r--r--cmd/mud/main.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/cmd/mud/main.go b/cmd/mud/main.go
index d04bd9b..1c1e1eb 100644
--- a/cmd/mud/main.go
+++ b/cmd/mud/main.go
@@ -8,6 +8,7 @@ import (
"strconv"
"syscall"
+ "thirdcollapse/internal/combat"
"thirdcollapse/internal/game"
"thirdcollapse/internal/net"
)
@@ -33,6 +34,11 @@ func main() {
g.Ticks.Subscribe(1, func() bool {
g.World.Tick()
+ g.MobStore.Tick()
+ combat.TickCombat()
+ g.RegenTick()
+ g.DisconnectTick()
+ g.WanderTick()
return true
})