mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 20:16:55 +01:00
Merge pull request #10882 from Aurorablade/ConvertFix
Redundent cult convert checks
This commit is contained in:
@@ -353,7 +353,7 @@ var/list/teleport_runes = list()
|
||||
var/turf/T = get_turf(src)
|
||||
|
||||
for(var/mob/living/M in T.contents)
|
||||
if(!iscultist(M) && !ismindshielded(M) && ishuman(M))
|
||||
if(!iscultist(M) && !ismindshielded(M) && !isgolem(M) && ishuman(M))
|
||||
convertees.Add(M)
|
||||
if(!convertees.len)
|
||||
fail_invoke()
|
||||
|
||||
Reference in New Issue
Block a user