diff --git a/code/game/machinery/PDApainter.dm b/code/game/machinery/PDApainter.dm index d5cf0168163..53aebc53dcb 100644 --- a/code/game/machinery/PDApainter.dm +++ b/code/game/machinery/PDApainter.dm @@ -130,7 +130,7 @@ set category = "Object" set src in oview(1) - if(usr.stat || usr.restrained() || !usr.canmove) + if(usr.stat || usr.restrained()) return if(storedpda) diff --git a/code/modules/crafting/recipes.dm b/code/modules/crafting/recipes.dm index ab956a42136..cd646d6ea2a 100644 --- a/code/modules/crafting/recipes.dm +++ b/code/modules/crafting/recipes.dm @@ -522,7 +522,7 @@ result = /obj/item/bikehorn/golden time = 20 reqs = list(/obj/item/stack/sheet/mineral/bananium = 5, - /obj/item/bikehorn) + /obj/item/bikehorn = 1) category = CAT_MISC /datum/crafting_recipe/bonedagger diff --git a/code/modules/mining/lavaland/necropolis_chests.dm b/code/modules/mining/lavaland/necropolis_chests.dm index 66e457c079a..d41ce7fd2ec 100644 --- a/code/modules/mining/lavaland/necropolis_chests.dm +++ b/code/modules/mining/lavaland/necropolis_chests.dm @@ -438,6 +438,7 @@ desc = "A dread talisman that can render you completely invulnerable." icon = 'icons/obj/lavaland/artefacts.dmi' icon_state = "talisman" + resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | UNACIDABLE | ACID_PROOF actions_types = list(/datum/action/item_action/immortality) var/cooldown = 0