diff --git a/code/game/objects/items/plushes.dm b/code/game/objects/items/plushes.dm index 421fe1797d5..36d029beec1 100644 --- a/code/game/objects/items/plushes.dm +++ b/code/game/objects/items/plushes.dm @@ -465,7 +465,6 @@ desc = "A small stuffed doll of the elder goddess Nar'Sie. Who thought this was a good children's toy?" icon_state = "narplush" var/clashing - var/is_invoker = TRUE gender = FEMALE //it's canon if the toy is /obj/item/toy/plush/narplush/Moved() @@ -474,10 +473,6 @@ if(P && istype(P.loc, /turf/open) && !P.clash_target && !clashing) P.clash_of_the_plushies(src) -/obj/item/toy/plush/narplush/hugbox - desc = "A small stuffed doll of the elder goddess Nar'Sie. Who thought this was a good children's toy? It looks sad." - is_invoker = FALSE - /obj/item/toy/plush/lizardplushie name = "lizard plushie" desc = "An adorable stuffed toy that resembles a lizardperson." diff --git a/code/modules/antagonists/cult/runes.dm b/code/modules/antagonists/cult/runes.dm index 30637b7f7aa..67006437875 100644 --- a/code/modules/antagonists/cult/runes.dm +++ b/code/modules/antagonists/cult/runes.dm @@ -117,9 +117,6 @@ structure_check() searches for nearby cultist structures required for the invoca invokers += user if(req_cultists > 1 || istype(src, /obj/effect/rune/convert)) var/list/things_in_range = range(1, src) - var/obj/item/toy/plush/narplush/plushsie = locate() in things_in_range - if(istype(plushsie) && plushsie.is_invoker) - invokers += plushsie for(var/mob/living/L in things_in_range) if(iscultist(L)) if(L == user)