[MIRROR] Cult Fixes and Minor Balance Tweaks (#5913)

* Cult Fixes and Minor Balance Tweaks (#36092)

* Fixes and Balance Tweaks

* Faster deconversions

* Shade nerf

* Cult Fixes and Minor Balance Tweaks
This commit is contained in:
CitadelStationBot
2018-03-12 07:01:54 -05:00
committed by Poojawa
parent 1b98fbe316
commit 64abde83eb
7 changed files with 47 additions and 45 deletions
+3 -3
View File
@@ -26,8 +26,8 @@
return FALSE
else
return FALSE
if(M.isloyal() || issilicon(M) || isbot(M) || isdrone(M) || is_servant_of_ratvar(M))
return FALSE //can't convert machines, shielded, or ratvar's dogs
if(M.isloyal() || issilicon(M) || isbot(M) || isdrone(M) || is_servant_of_ratvar(M) || !M.client)
return FALSE //can't convert machines, shielded, braindead, or ratvar's dogs
return TRUE
/datum/game_mode/cult
@@ -80,7 +80,7 @@
cultist.special_role = ROLE_CULTIST
cultist.restricted_roles = restricted_jobs
log_game("[cultist.key] (ckey) has been selected as a cultist")
return (cultists_to_cult.len>=required_enemies)