diff options
| author | historia <[not public]> | 2026-06-16 23:37:50 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-16 23:37:50 -0400 |
| commit | 389e307f205f9b7edf604fb9f86e1038ead736ef (patch) | |
| tree | 595095b5877cc2b0513d31fb126303d8796cc311 /cmd | |
| parent | 085e728d22a3369bd110b77409914cfbe9ebe611 (diff) | |
| download | thehouseoficarus-389e307f205f9b7edf604fb9f86e1038ead736ef.tar.gz | |
feat: major xterm256 color overhaul, see worldbuilding docs.
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/mud/main.go | 9 |
1 files changed, 6 insertions, 3 deletions
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) } |
