From 389e307f205f9b7edf604fb9f86e1038ead736ef Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Tue, 16 Jun 2026 23:37:50 -0400 Subject: feat: major xterm256 color overhaul, see worldbuilding docs. --- cmd/mud/main.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'cmd/mud/main.go') diff --git a/cmd/mud/main.go b/cmd/mud/main.go index 67ba93d..18fd171 100644 --- a/cmd/mud/main.go +++ b/cmd/mud/main.go @@ -8,9 +8,9 @@ import ( "os/signal" "syscall" - "thirdcollapse/internal/config" - "thirdcollapse/internal/game" - "thirdcollapse/internal/net" + "thehouseoficarus/internal/config" + "thehouseoficarus/internal/game" + "thehouseoficarus/internal/net" ) func main() { @@ -64,6 +64,9 @@ func main() { if cfg.Telnet.Enabled { log.Printf("Telnet listening on :%d", cfg.Telnet.Port) } + if cfg.TelnetTLS.Enabled { + log.Printf("Telnet+TLS listening on :%d", cfg.TelnetTLS.Port) + } if cfg.HTTP.Enabled { log.Printf("HTTP listening on :%d", cfg.HTTP.Port) } -- cgit v1.2.3