Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 139e015

Browse files
committed
Update stealth.dm
1 parent 8e4db67 commit 139e015

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

yogstation/code/datums/martial/stealth.dm

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,21 +55,21 @@
5555
if(findtext(streak, DAGGER_COMBO))
5656
hidden_knife(A,D)
5757
streak = ""
58-
return FALSE
58+
return
5959

6060
if(findtext(streak, FINGERGUN_COMBO))
6161
fingergun(A,D)
6262
streak = ""
63-
return FALSE
63+
return TRUE //don't upgrade the grab
6464

6565
/datum/martial_art/liquidator/proc/hidden_knife(mob/living/carbon/human/A, mob/living/carbon/human/D) if(findtext(streak, DAGGER_COMBO))
6666
var/selected_zone = A.zone_selected
6767
var/armor_block = D.run_armor_check(selected_zone, MELEE, armour_penetration = 40)
6868
D.apply_damage(A.get_punchdamagehigh() * 4, BRUTE, selected_zone, armor_block, sharpness = SHARP_EDGED) //28 damage
6969
to_chat(A, span_warning("You stab [D] with a hidden blade!"))
7070
to_chat(D, span_userdanger("You are suddenly stabbed with a blade!"))
71-
A.playsound_local(src, 'sound/weapons/batonextend.ogg', 15, TRUE) //sound only to you as audio feedback that you stabbed them
72-
A.playsound_local(src, 'sound/weapons/bladeslice.ogg', 15, TRUE)
71+
A.playsound_local(src, 'sound/weapons/batonextend.ogg', 25, TRUE) //sound only to you as audio feedback that you stabbed them
72+
A.playsound_local(src, 'sound/weapons/bladeslice.ogg', 25, TRUE)
7373

7474
/datum/martial_art/liquidator/proc/injection(mob/living/carbon/human/A, mob/living/carbon/human/D)
7575
var/datum/reagent/picked_chem = default_chem
@@ -161,6 +161,7 @@
161161
combined_msg += span_notice("[helper.injection_chems[chemical]]u of [initial(chemical.name)]. But only if there is less than [helper.injection_chems[chemical]/2]u in the target already.")
162162
combined_msg += span_notice("If none of the above chemicals are injected, you will default to [helper.injection_chems[helper.default_chem]]u of [initial(helper.default_chem.name)].")
163163

164+
to_chat(usr, examine_block(combined_msg.Join("\n")))
164165
qdel(helper)
165166

166167
#undef PRE_DAGGER_COMBO

0 commit comments

Comments
 (0)