Skip to content

Commit

Permalink
draktek
Browse files Browse the repository at this point in the history
  • Loading branch information
Diegoflores31 committed Jan 27, 2024
1 parent f4a62d1 commit 6e33595
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/game/objects/items/weapons/stunbaton.dm
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,10 @@
var/mob/living/carbon/human/real_user = user
var/mob/living/carbon/human/human_target = target
if(has_user_lock && !skillcheck(real_user, SKILL_POLICE, SKILL_POLICE_SKILLED) && status)
if(prob(60))
if(prob(50))
to_chat(real_user, SPAN_WARNING("You hit yourself with the [src] during the struggle..."))
real_user.apply_damage(force, BRUTE, def_zone=pick("r_hand","l_hand"), no_limb_loss=TRUE)
real_user.drop_held_item()
real_user.apply_effect(1,STUN)
human_target = real_user

var/target_zone = check_zone(user.zone_selected)
Expand Down

0 comments on commit 6e33595

Please sign in to comment.