aboutsummaryrefslogtreecommitdiff
path: root/config/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.c')
-rw-r--r--config/config.c5
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');