From e7afde2a854c6467eb26b407271e4a4fc87ed15b Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 18 Mar 2023 19:21:40 +0100 Subject: [PATCH] [MIRROR] Bone gel now spawns in stacks of 4 inside Paramedic and Medical ERT belts [MDB IGNORE] (#19943) * Bone gel now spawns in stacks of 4 inside Paramedic and Medical ERT belts (#74063) ## About The Pull Request Bone gel spawned inside player medical belts, for the roles of Paramedic and Medical ERT, now spawns in a stack of 4. Previously they would spawn with only a single stack. This new amount matches the stack size received when purchasing the identical item from a Nanomed, or ordering it in a Cargo crate. As such, this change creates consistency around the number of uses in an fresh, "unopened" bottle of bone gel. ## Why It's Good For The Game Creating a uniform, default stack size for bone gel keeps interactions with the item consistent and predictable. In the case of paramedics, their starting kit also includes 5 stacks of surgical tape, so having a few stacks of bone gel matches the player expectation that they have enough supplies to treat a few instances of each type of injury (rather than only one). Addressing this discrepancy also Closes #71393. ## Changelog :cl: balance: Bone gel now spawns in stacks of 4 in Paramedic and Medical ERT belts /:cl: * Bone gel now spawns in stacks of 4 inside Paramedic and Medical ERT belts --------- Co-authored-by: Antonio Tosti <5588048+atosti@users.noreply.github.com> --- code/game/objects/items/storage/belt.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/storage/belt.dm b/code/game/objects/items/storage/belt.dm index 2a3ac708e4a..a8df32eac79 100644 --- a/code/game/objects/items/storage/belt.dm +++ b/code/game/objects/items/storage/belt.dm @@ -274,7 +274,7 @@ /obj/item/storage/belt/medical/paramedic/PopulateContents() SSwardrobe.provide_type(/obj/item/sensor_device, src) SSwardrobe.provide_type(/obj/item/stack/medical/gauze/twelve, src) - SSwardrobe.provide_type(/obj/item/stack/medical/bone_gel, src) + SSwardrobe.provide_type(/obj/item/stack/medical/bone_gel/four, src) SSwardrobe.provide_type(/obj/item/stack/sticky_tape/surgical, src) SSwardrobe.provide_type(/obj/item/reagent_containers/syringe, src) SSwardrobe.provide_type(/obj/item/reagent_containers/cup/bottle/ammoniated_mercury, src) @@ -300,7 +300,7 @@ SSwardrobe.provide_type(/obj/item/pinpointer/crew, src) SSwardrobe.provide_type(/obj/item/scalpel/advanced, src) SSwardrobe.provide_type(/obj/item/retractor/advanced, src) - SSwardrobe.provide_type(/obj/item/stack/medical/bone_gel, src) + SSwardrobe.provide_type(/obj/item/stack/medical/bone_gel/four, src) SSwardrobe.provide_type(/obj/item/cautery/advanced, src) SSwardrobe.provide_type(/obj/item/surgical_drapes, src) update_appearance()