From e4248505689c2b2c61d1a7af7c1fe760100cb07b Mon Sep 17 00:00:00 2001 From: Spamcat Date: Fri, 29 Mar 2013 14:51:57 +0400 Subject: [PATCH] Revert "Removed unneeded checks." This reverts commit 53b0a3f8c35d81aca8d1081218b06590fb876928. *slaps himself* Don't touch what's working, chucklefuck. --- code/modules/mob/new_player/new_player.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index c7bdbf9a487..99058d26cd1 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -132,7 +132,7 @@ var/S = client.prefs.species if(S == "Unathi") S = "Soghun" - if(!is_alien_whitelisted(src, S)) + if(!is_alien_whitelisted(src, S) && config.usealienwhitelist) src << alert("You are currently not whitelisted to play [client.prefs.species].") return 0 @@ -149,7 +149,7 @@ var/S = client.prefs.species if(S == "Unathi") S = "Soghun" - if(!is_alien_whitelisted(src, S)) + if(!is_alien_whitelisted(src, S) && config.usealienwhitelist) src << alert("You are currently not whitelisted to play [client.prefs.species].") return 0 @@ -330,15 +330,15 @@ new_character.lastarea = get_area(loc) if(client.prefs.species == "Tajaran") //This is like the worst, but it works, so meh. - Erthilo - if(is_alien_whitelisted(src, "Tajaran")) + if(is_alien_whitelisted(src, "Tajaran"|| !config.usealienwhitelist)) new_character.dna.mutantrace = "tajaran" new_character.tajaran_talk_understand = 1 if(client.prefs.species == "Unathi") - if(is_alien_whitelisted(src, "Soghun")) + if(is_alien_whitelisted(src, "Soghun"|| !config.usealienwhitelist)) new_character.dna.mutantrace = "lizard" new_character.soghun_talk_understand = 1 if(client.prefs.species == "Skrell") - if(is_alien_whitelisted(src, "Skrell")) + if(is_alien_whitelisted(src, "Skrell"|| !config.usealienwhitelist)) new_character.dna.mutantrace = "skrell" new_character.skrell_talk_understand = 1