From 2bfe0a1bd6d2017af406598303c0c45aeec265f4 Mon Sep 17 00:00:00 2001 From: Aurorablade Date: Tue, 30 Jun 2015 00:41:58 -0400 Subject: [PATCH] fixes based on TG PR see https://github.com/tgstation/-tg-station/pull/10259 only i went with the Observer visability ala Reven --- code/datums/spells/ethereal_jaunt.dm | 1 + code/modules/mob/living/simple_animal/slaughter/slaughter.dm | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/code/datums/spells/ethereal_jaunt.dm b/code/datums/spells/ethereal_jaunt.dm index 878aeea8dcd..6174d2d8d58 100644 --- a/code/datums/spells/ethereal_jaunt.dm +++ b/code/datums/spells/ethereal_jaunt.dm @@ -95,6 +95,7 @@ var/canmove = 1 density = 0 anchored = 1 + invisibility = INVISIBILITY_OBSERVER /obj/effect/dummy/spell_jaunt/relaymove(var/mob/user, direction) if (!src.canmove) return diff --git a/code/modules/mob/living/simple_animal/slaughter/slaughter.dm b/code/modules/mob/living/simple_animal/slaughter/slaughter.dm index 72ef79dbdf5..a4a239294d5 100644 --- a/code/modules/mob/living/simple_animal/slaughter/slaughter.dm +++ b/code/modules/mob/living/simple_animal/slaughter/slaughter.dm @@ -238,6 +238,7 @@ var/canmove = 1 density = 0 anchored = 1 + invisibility = INVISIBILITY_OBSERVER /obj/effect/dummy/slaughter/relaymove(var/mob/user, direction) if (!src.canmove || !direction) return @@ -281,7 +282,7 @@ /mob/living/simple_animal/slaughter/proc/bloodPull() set name = "Exsanguinate" - set desc = "Cuase blood to be torn our of mortals to help acess the plane.." + set desc = "Cuase blood to be torn out of mortals to help acess the plane.." set category = "Daemon" for(var/mob/living/carbon/human/H in view(10,(src.holder || src.loc)))