aboutsummaryrefslogtreecommitdiff
path: root/internal/net
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-09 20:32:44 -0400
committerhistoria <[not public]>2026-06-09 20:32:44 -0400
commit6a0f3d7a252de4b1741cfe5e1c561412c602becc (patch)
tree368954bc9a52da6462823cc5efdb5a69d7ac1741 /internal/net
parent9a8848eaa84d46578595a7ca3efe66d1fe36d1e0 (diff)
downloadthehouseoficarus-6a0f3d7a252de4b1741cfe5e1c561412c602becc.tar.gz
feat: better login screen
Diffstat (limited to 'internal/net')
-rw-r--r--internal/net/server.go23
1 files changed, 21 insertions, 2 deletions
diff --git a/internal/net/server.go b/internal/net/server.go
index fa0b509..e5761a2 100644
--- a/internal/net/server.go
+++ b/internal/net/server.go
@@ -160,8 +160,27 @@ func (s *Server) handleSession(session *Session, handler func(*Session, string))
}()
_, _ = session.Conn.Write([]byte("\033[2J\033[H")) // clear screen
- session.Write("Welcome to Third Collapse!\r\n")
- session.Write("Account name: ")
+
+ welcomeart := `
+ , 3333333 333 333 333 3333333 3333333
+ | 33! 33! 333 33! 33! 333 33! 333 ':. +
+ -+- * 3!! 3!3!3!3! !!3 3!3!!3! 3!3 !3! '::._ *
+ | !!: !!: !!! !!: !!: :!! !!: !!! '._)
+ : : : : : : : : :: : : ,
+ . * ,
+ , welcome to third collapse . *
+
+ 3333333 333333 333 , 333 333333 3333333 333333 33333333
+ !33 33! 333 33! 33! 33! 333 33! 333 !33 33!
+ !3! 3!3 !3! 3!! 3!! + 3!3!3!3! 3!33!3! !33!! 3!!!:!
+ :!! !!: !!! !!: !!: !!: !!! !!: !:! !!:
+ :: :: : : :. : : ::.: : : ::.: : : : : : ::.: : : :: :::
+
+
+`
+
+ session.Write(welcomeart)
+ session.Write("ACCOUNT NAME> ")
for {
line, err := session.Reader.ReadString('\n')