aboutsummaryrefslogtreecommitdiff
path: root/cmd/mud
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-29 01:00:17 -0400
committerhistoria <[not public]>2026-06-29 01:00:17 -0400
commite9d87838590a02c7ca028fad8cd16e42a582dd32 (patch)
tree0d9770d8fc728946c5452e732efbad393a745a23 /cmd/mud
parentfffc132263ab7d3c402992bffbaae4790161f7a7 (diff)
downloadthehouseoficarus-e9d87838590a02c7ca028fad8cd16e42a582dd32.tar.gz
feat: self-signed certificates
Diffstat (limited to 'cmd/mud')
-rw-r--r--cmd/mud/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mud/main.go b/cmd/mud/main.go
index 4427a7d..db801e8 100644
--- a/cmd/mud/main.go
+++ b/cmd/mud/main.go
@@ -35,8 +35,8 @@ func main() {
}
}
- g := game.New(dataDir, &cfg.Colors, cfg.Game.StartupValidation)
- g.Ticks.Start(cfg.Game.TickLength)
+ g := game.New(dataDir, &cfg.DefaultColors, cfg.StartupValidation, cfg.StartingRoom)
+ g.Ticks.Start(cfg.TickLength)
defer g.Ticks.Stop()
g.Ticks.Subscribe(1, func() bool {