From bc625d79230a57d7c4c0e2234fe923e5aac451ab Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 29 May 2024 18:20:12 -0400 Subject: [PATCH] Lets people who take berserker's rights use sutures (#170) Co-authored-by: Marcus D. Johnston <93160383+Aurrain@users.noreply.github.com> --- code/datums/traits/good.dm | 2 +- code/game/objects/items/stacks/medical.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/datums/traits/good.dm b/code/datums/traits/good.dm index ccda069aa2c..bbbe0a1c982 100644 --- a/code/datums/traits/good.dm +++ b/code/datums/traits/good.dm @@ -927,7 +927,7 @@ GLOBAL_LIST_INIT(bone_dancer_recipes, list( /datum/quirk/thickskin name = "Thick Skin" - desc = "You just don't get splinters, or shrapnel for that matter. BROKEN AS OF 2/9/23, TAKE LICK HEALING TO CLOSE WOUNDS." + desc = "You just don't get splinters, or shrapnel for that matter." value = 3 mob_trait = TRAIT_PIERCEIMMUNE gain_text = span_notice("Your skin feels way stronger.") diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index 2ffdeca8139..2b6903f2b80 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -204,7 +204,7 @@ if(is_healing) user.show_message(span_alert("You're already doing something with this!")) return - if(!user.can_inject(C, TRUE)) + if(!user.can_inject(C, TRUE, bypass_immunity = TRUE)) //We bypass immunity for people with berserker's rights -Pokee return var/list/output_list = pick_a_bodypart(C, user)