aboutsummaryrefslogtreecommitdiff
path: root/cmd/mud
diff options
context:
space:
mode:
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)
}