diff options
| author | B. Watson <urchlay@slackware.uk> | 2026-03-16 03:55:02 -0400 |
|---|---|---|
| committer | B. Watson <urchlay@slackware.uk> | 2026-03-16 03:55:02 -0400 |
| commit | c7e79f23f7c2095712ed572bd6df2f89ad421871 (patch) | |
| tree | b1514cf2a08813a3e3b24d5b00e7433f858941c2 /config | |
| parent | f96c655c5ca26d6bc324eb3a8e5492630c448b6a (diff) | |
| download | fujinet-chat-c7e79f23f7c2095712ed572bd6df2f89ad421871.tar.gz | |
Shortcut to connect as Urch600XL in config.
Diffstat (limited to 'config')
| -rw-r--r-- | config/config.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/config.c b/config/config.c index 6b22e06..695a430 100644 --- a/config/config.c +++ b/config/config.c @@ -304,6 +304,11 @@ char prompt_main(void) { print("[E]dit [C]onnect [C]? "); c = tolower(cgetc()); + if(c == 0x03) { + /* super-secret Urchlay mode... */ + strcpy(conf->nick, "Urch600XL"); + c = 'c'; + } if(c == '\n') c = 'c'; putchar(c); putchar('\n'); |
