diff options
| author | historia <[not public]> | 2026-06-09 17:15:13 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-09 17:15:13 -0400 |
| commit | 9edc568e16741d443b67fbd23b0d91790085ced9 (patch) | |
| tree | d54be40531ba124dcf8299f9e94bfba4ece273ae /cmd/mud | |
| parent | 56be6a3f45830594225a765b406816e6179ccde1 (diff) | |
| download | thehouseoficarus-9edc568e16741d443b67fbd23b0d91790085ced9.tar.gz | |
combat, mobs, parsing, toggles, hard disconnect handling
Diffstat (limited to 'cmd/mud')
| -rw-r--r-- | cmd/mud/main.go | 6 |
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 }) |
