Stops people soulstoning manifested humans

This commit is contained in:
Kyep
2017-04-01 16:01:05 -07:00
parent b7300e3586
commit b08ccdc3c5
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -969,7 +969,7 @@ var/list/teleport_runes = list()
if(O.client && !jobban_isbanned(O, ROLE_CULTIST) && !jobban_isbanned(O, ROLE_SYNDICATE))
ghosts_on_rune |= O
var/mob/dead/observer/ghost_to_spawn = pick(ghosts_on_rune)
var/mob/living/carbon/human/new_human = new(get_turf(src))
var/mob/living/carbon/human/manifested/new_human = new(get_turf(src))
new_human.real_name = ghost_to_spawn.real_name
new_human.alpha = 150 //Makes them translucent
new_human.color = "grey" //heh..cult greytide...litterly...
+1 -1
View File
@@ -51,7 +51,7 @@
to_chat(user, "<span class='warning'>There is no power left in the shard.</span>")
return
if(!ishuman(M) || istype(M, /mob/living/carbon/human/dummy)) //If target is not a human or a dummy
if(!ishuman(M) || istype(M, /mob/living/carbon/human/dummy) || istype(M, /mob/living/carbon/human/manifested)) //If target is not a human or a dummy
return ..()
if(M.has_brain_worms()) //Borer stuff - RR
@@ -74,6 +74,9 @@
real_name = "Test Dummy"
status_flags = GODMODE|CANPUSH
/mob/living/carbon/human/manifested
real_name = "Cursed Human"
/mob/living/carbon/human/skrell/New(var/new_loc)
..(new_loc, "Skrell")