Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removes reset key unintended medical skill lock, engi skill clarity message #8127

Merged
merged 4 commits into from
Jan 18, 2025
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions code/game/objects/items/devices/defibrillator.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Blundir marked this conversation as resolved.
Show resolved Hide resolved
blocked_by_suit = FALSE
should_spark = FALSE

Expand All @@ -353,6 +353,10 @@
if(ready)
icon_state += "_on"

/obj/item/device/defibrillator/synthetic/get_examine_text(mob/user)
. = ..()
. += 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))
to_chat(user, SPAN_WARNING("You can't use a [src] on a living being!"))
Expand Down
Loading