diff options
| author | historia <[not public]> | 2026-06-16 01:59:27 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-16 01:59:27 -0400 |
| commit | 43f21aabae8924f35c12c8485e690aeefe0089fb (patch) | |
| tree | b5fbadb89df3cf4ffec86503bb8e2d7e52b27454 /internal/game/login_account.go | |
| parent | 4cc1ddcd185509080b4b3e15d1646567edd51c9d (diff) | |
| download | thehouseoficarus-43f21aabae8924f35c12c8485e690aeefe0089fb.tar.gz | |
feat: overhauled ansi color, added prompt options
Diffstat (limited to 'internal/game/login_account.go')
| -rw-r--r-- | internal/game/login_account.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/game/login_account.go b/internal/game/login_account.go index 7243955..3ad1fee 100644 --- a/internal/game/login_account.go +++ b/internal/game/login_account.go @@ -68,10 +68,14 @@ func (g *Game) handlePassword(sess *net.Session, input string) { PasswordHash: acc.PasswordHash, Characters: acc.Characters, Aliases: acc.Aliases, + Colors: acc.Colors, } if sess.Account.Aliases == nil { sess.Account.Aliases = make(map[string]string) } + if sess.Account.Colors == nil { + sess.Account.Colors = make(map[string]string) + } g.showMenu(sess) } |
