(may_play): More helpful diagnosis and log.

This commit is contained in:
Markus Armbruster 2006-03-09 22:04:17 +00:00
parent 435183f74d
commit a552ba60e2

View file

@ -273,8 +273,11 @@ may_play(void)
&& !strstr(privip, player->hostaddr)) { && !strstr(privip, player->hostaddr)) {
logerror("Deity login from untrusted host attempted by %s", logerror("Deity login from untrusted host attempted by %s",
praddr(player)); praddr(player));
logerror("To allow this, add %s to econfig key privip",
player->hostaddr);
pr_id(player, C_EXIT, pr_id(player, C_EXIT,
"Deity login only from IPs in econfig key privip!\n"); "Deity login not allowed from this IP!"
" See log for help on how to allow it.\n");
return 0; return 0;
} }
return 1; return 1;