From 3f954f10a7f324f5056f7dfd9d845bdb07723f32 Mon Sep 17 00:00:00 2001 From: Sishen Date: Mon, 2 Sep 2019 02:09:59 -0400 Subject: [PATCH] Update runes.dm --- code/modules/antagonists/cult/runes.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/cult/runes.dm b/code/modules/antagonists/cult/runes.dm index 3bdcefc328..29b4e4539c 100644 --- a/code/modules/antagonists/cult/runes.dm +++ b/code/modules/antagonists/cult/runes.dm @@ -61,7 +61,7 @@ Runes can either be invoked by one's self or with many different cultists. Each if(do_after(user, 15, target = src)) to_chat(user, "You carefully erase the [lowertext(cultist_name)] rune.") qdel(src) - else if(istype(I, /obj/item/storage/book/bible)) + else if(istype(I, /obj/item/storage/book/bible) || istype(I, /obj/item/nullrod)) user.say("BEGONE FOUL MAGICKS!!", forced = "bible") to_chat(user, "You disrupt the magic of [src] with [I].") qdel(src)