Skip to content

Commit

Permalink
Update code/modules/projectiles/gun_helpers.dm
Browse files Browse the repository at this point in the history
Co-authored-by: Doubleumc <[email protected]>
  • Loading branch information
Max-023 and Doubleumc authored Sep 22, 2024
1 parent 40f8213 commit 6eedad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/projectiles/gun_helpers.dm
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ DEFINES in setup.dm, referenced here.
/obj/item/weapon/gun/proc/retrieval_check(mob/living/carbon/human/user, retrieval_slot)
if(retrieval_slot == WEAR_J_STORE)
var/obj/item/suit = user.wear_suit
if(!istype(suit, /obj/item/clothing/suit/marine||/obj/item/clothing/suit/storage/marine))
if(!(istype(suit, /obj/item/clothing/suit/marine) || istype(suit, /obj/item/clothing/suit/storage/marine)))
return FALSE
return TRUE

Expand Down

0 comments on commit 6eedad9

Please sign in to comment.