diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2025-11-29 20:41:38 +0100 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2025-11-29 20:41:38 +0100 |
| commit | 27370b9024fd3b4083778fd4df63fa1028500feb (patch) | |
| tree | e76200ea98d7ef01e5f32ae00b4d44a767eefb3e | |
| parent | d96009fda3731b706044f1203e1b786826055d8e (diff) | |
Print the file path to the admin list
| -rw-r--r-- | FICS/command.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FICS/command.c b/FICS/command.c index f35b1db..1cdd99d 100644 --- a/FICS/command.c +++ b/FICS/command.c @@ -665,7 +665,8 @@ process_login(int p, char *loginname) !in_list(p, L_ADMIN, parray[p].name)) { pprintf(p, "\nYou've got a bad playerfile -- " "please report this to an admin!\n"); - pprintf(p, "Your handle is missing!"); + pprintf(p, "Your handle is missing!\n" + "(This in '%s/admin'.)\n", lists_dir); pprintf(p, "Please log on as an unreg until " "an admin can correct this.\n"); return COM_LOGOUT; |
