diff --git a/code/modules/antagonists/heretic/items/unsealed_arts.dm b/code/modules/antagonists/heretic/items/unsealed_arts.dm index d796886bd2e..427c6020494 100644 --- a/code/modules/antagonists/heretic/items/unsealed_arts.dm +++ b/code/modules/antagonists/heretic/items/unsealed_arts.dm @@ -30,6 +30,7 @@ var/obj/item/stack/sheet/cloth/coverings = used if(coverings.amount >= 3) if(do_after_once(user, 3 SECONDS, TRUE, src, TRUE, FALSE)) + coverings.use(3) on_cover() else to_chat(user, SPAN_WARNING("You need at least 3 sheets of cloth to cover this!")) @@ -42,6 +43,7 @@ if(covered) if(do_after_once(user, 3 SECONDS, TRUE, src, TRUE, FALSE)) on_uncover() + new /obj/item/stack/sheet/cloth(loc, 3) return FINISH_ATTACK /obj/structure/unsealed_art/wrench_act(mob/living/user, obj/item/I)