Merge pull request #11560 from Fox-McCloud/runereveal

Fixes Bibles Not Revealing Runes
This commit is contained in:
Swag McYolosteinen
2015-09-13 17:32:40 +02:00
2 changed files with 9 additions and 2 deletions
+2 -2
View File
@@ -669,7 +669,7 @@ var/list/sacrificed = list()
if (istype(W,/obj/item/weapon/paper/talisman))
rad = 4
go = 1
if (istype(W,/obj/item/weapon/nullrod))
if (istype(W,/obj/item/weapon/storage/book/bible))
rad = 1
go = 1
if(go)
@@ -678,7 +678,7 @@ var/list/sacrificed = list()
R.invisibility=0
S=1
if(S)
if(istype(W,/obj/item/weapon/nullrod))
if(istype(W,/obj/item/weapon/storage/book/bible))
usr << "<span class='danger'>Arcane markings suddenly glow from underneath a thin layer of dust!</span>"
return
if(istype(W,/obj/effect/rune))
@@ -0,0 +1,7 @@
author: Fox P McCloud
delete-after: True
changes:
- bugfix: "Fixes Bibles/holy books not properly revealing runes."