Skip to content

Commit

Permalink
Fixes scout decap when wearing helmet
Browse files Browse the repository at this point in the history
  • Loading branch information
DOOM authored and DOOM committed May 1, 2024
1 parent 36e390d commit bd57e69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/organs/limbs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1513,7 +1513,7 @@ treat_grafted var tells it to apply to grafted but unsalved wounds, for burn kit
/obj/limb/head/limb_delimb(damage_source)
var/obj/item/clothing/head/helmet/owner_helmet = owner.head

if(!istype(owner_helmet) || !owner.allow_gun_usage)
if(!istype(owner_helmet) || (issynth(owner) && !owner.allow_gun_usage))
droplimb(0, 0, damage_source)
return

Expand Down

0 comments on commit bd57e69

Please sign in to comment.