From b51d34e12e4599321702ea27db778e19e171efd5 Mon Sep 17 00:00:00 2001 From: Blundir <100090741+Blundir@users.noreply.github.com> Date: Thu, 16 Jan 2025 22:24:16 +0200 Subject: [PATCH 1/4] Update defibrillator.dm --- code/game/objects/items/devices/defibrillator.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/devices/defibrillator.dm b/code/game/objects/items/devices/defibrillator.dm index 3f8ea2eed8bd..4f6452c6a255 100644 --- a/code/game/objects/items/devices/defibrillator.dm +++ b/code/game/objects/items/devices/defibrillator.dm @@ -329,8 +329,8 @@ charge_cost = 1000 force = 0 throwforce = 0 - skill_to_check_alt = SKILL_ENGINEER - skill_level_alt = SKILL_ENGINEER_ENGI + skill_to_check = SKILL_ENGINEER + skill_level = SKILL_ENGINEER_ENGI blocked_by_suit = FALSE should_spark = FALSE From c2ac193d445cb3ebf3db2c7052a807b6c77abb4d Mon Sep 17 00:00:00 2001 From: Blundir <100090741+Blundir@users.noreply.github.com> Date: Thu, 16 Jan 2025 22:27:42 +0200 Subject: [PATCH 2/4] Update defibrillator.dm --- code/game/objects/items/devices/defibrillator.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/game/objects/items/devices/defibrillator.dm b/code/game/objects/items/devices/defibrillator.dm index 4f6452c6a255..dec53319ca20 100644 --- a/code/game/objects/items/devices/defibrillator.dm +++ b/code/game/objects/items/devices/defibrillator.dm @@ -353,6 +353,10 @@ if(ready) icon_state += "_on" +/obj/item/device/defibrillator/synthetic/get_examine_text(mob/user) + . = ..() + . += SPAN_NOTICE("You need some electronics and circuitry understanding to use this.") + /obj/item/device/defibrillator/synthetic/check_revive(mob/living/carbon/human/H, mob/living/carbon/human/user) if(!issynth(H)) to_chat(user, SPAN_WARNING("You can't use a [src] on a living being!")) From f287e25ad62c2fe1bbba8bd2087926e7218e1650 Mon Sep 17 00:00:00 2001 From: harryob Date: Sat, 18 Jan 2025 08:46:48 +0000 Subject: [PATCH 3/4] Update code/game/objects/items/devices/defibrillator.dm --- code/game/objects/items/devices/defibrillator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/defibrillator.dm b/code/game/objects/items/devices/defibrillator.dm index dec53319ca20..114b5f98247e 100644 --- a/code/game/objects/items/devices/defibrillator.dm +++ b/code/game/objects/items/devices/defibrillator.dm @@ -355,7 +355,7 @@ /obj/item/device/defibrillator/synthetic/get_examine_text(mob/user) . = ..() - . += SPAN_NOTICE("You need some electronics and circuitry understanding to use this.") + . += SPAN_NOTICE("You need some knowledge of electronics and circuitry to use this.") /obj/item/device/defibrillator/synthetic/check_revive(mob/living/carbon/human/H, mob/living/carbon/human/user) if(!issynth(H)) From f521d550e2e7dedf5d8aaa31b73b38fc58e858f9 Mon Sep 17 00:00:00 2001 From: Blundir <100090741+Blundir@users.noreply.github.com> Date: Sat, 18 Jan 2025 14:18:53 +0200 Subject: [PATCH 4/4] Update code/game/objects/items/devices/defibrillator.dm Co-authored-by: Git-Nivrak <59925169+Git-Nivrak@users.noreply.github.com> --- code/game/objects/items/devices/defibrillator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/defibrillator.dm b/code/game/objects/items/devices/defibrillator.dm index 114b5f98247e..a618d30d9387 100644 --- a/code/game/objects/items/devices/defibrillator.dm +++ b/code/game/objects/items/devices/defibrillator.dm @@ -330,7 +330,7 @@ force = 0 throwforce = 0 skill_to_check = SKILL_ENGINEER - skill_level = SKILL_ENGINEER_ENGI + skill_level = SKILL_ENGINEER_TRAINED blocked_by_suit = FALSE should_spark = FALSE