diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 823fa29a8f4..2c7b8eb7910 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -693,27 +693,28 @@ to_chat(usr, span_boldnotice("You must be dead to use this!")) return + //SKYRAT EDIT ADDITION if(ckey) if(is_banned_from(ckey, BAN_RESPAWN)) to_chat(usr, "You are respawn banned, you can't respawn!") return - - log_game("[key_name(usr)] used abandon mob.") + //SKYRAT EDIT END + log_game("[key_name(usr)] used the respawn button.") to_chat(usr, span_boldnotice("Please roleplay correctly!")) if(!client) - log_game("[key_name(usr)] AM failed due to disconnect.") + log_game("[key_name(usr)] respawn failed due to disconnect.") return client.screen.Cut() client.screen += client.void if(!client) - log_game("[key_name(usr)] AM failed due to disconnect.") + log_game("[key_name(usr)] respawn failed due to disconnect.") return var/mob/dead/new_player/M = new /mob/dead/new_player() if(!client) - log_game("[key_name(usr)] AM failed due to disconnect.") + log_game("[key_name(usr)] respawn failed due to disconnect.") qdel(M) return