Notify players in PM if they part the channel during a game

This commit is contained in:
nyuszika7h 2016-02-08 08:47:01 +01:00
parent fc815c1549
commit 00e976d1e0
2 changed files with 2 additions and 0 deletions

View File

@ -228,6 +228,7 @@
"headbutts"
],
"goat_success": "\u0002{0}\u0002's goat walks by and {1} \u0002{2}\u0002.",
"part_grace_time_notice": "It appears you have left {0}. Please rejoin within {1} seconds or you will be declared dead.",
"player_missing": "\u0002{0}\u0002 has gone missing.",
"leave_death": "\u0002{0}\u0002 died due to falling off a cliff. The \u0002{1}\u0002 is lost to the ravine forever.",
"leave_death_no_reveal": "\u0002{0}\u0002 died due to falling off a cliff.",

View File

@ -3715,6 +3715,7 @@ def leave(cli, what, nick, why=""):
else:
msg = (messages["account_death_no_reveal_2"] + "{1}").format(nick, population)
elif what != "kick":
cli.msg(nick, messages["part_grace_time_notice"].format(botconfig.CHANNEL, var.PART_GRACE_TIME))
msg = messages["player_missing"].format(nick)
killplayer = False
else: