aboutsummaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
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
})