aboutsummaryrefslogtreecommitdiff
path: root/cmd/mud
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-16 23:37:50 -0400
committerhistoria <[not public]>2026-06-16 23:37:50 -0400
commit389e307f205f9b7edf604fb9f86e1038ead736ef (patch)
tree595095b5877cc2b0513d31fb126303d8796cc311 /cmd/mud
parent085e728d22a3369bd110b77409914cfbe9ebe611 (diff)
downloadthehouseoficarus-389e307f205f9b7edf604fb9f86e1038ead736ef.tar.gz
feat: major xterm256 color overhaul, see worldbuilding docs.
Diffstat (limited to 'cmd/mud')
-rw-r--r--cmd/mud/main.go9
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)
}