From 170541bd2d57e2aa1260ca58d5a7146ad03e702f Mon Sep 17 00:00:00 2001 From: MrMelbert <51863163+MrMelbert@users.noreply.github.com> Date: Tue, 5 Mar 2024 17:36:51 -0600 Subject: [PATCH] Fix all bibles being carved (#81836) ## About The Pull Request `/obj/item/book/bible` had `carve_out` in `Initialize` instead of `/obj/item/book/bible/booze` ## Changelog :cl: Melbert fix: All bibles are no longer suspiciously hollow /:cl: --- code/modules/library/bibles.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/library/bibles.dm b/code/modules/library/bibles.dm index 6a5d1b1d5c4..d1f58f2e3ce 100644 --- a/code/modules/library/bibles.dm +++ b/code/modules/library/bibles.dm @@ -88,7 +88,6 @@ GLOBAL_LIST_INIT(bibleitemstates, list( active_slots = ITEM_SLOT_SUITSTORE,\ on_intercepted = CALLBACK(src, PROC_REF(on_intercepted_bullet)),\ ) - carve_out() /obj/item/book/bible/Destroy(force) QDEL_NULL(bullet_catcher) @@ -345,6 +344,7 @@ GLOBAL_LIST_INIT(bibleitemstates, list( /obj/item/book/bible/booze/Initialize(mapload) . = ..() + carve_out() new /obj/item/reagent_containers/cup/glass/bottle/whiskey(src) /obj/item/book/bible/syndicate