Skip to content

Commit

Permalink
fix gloves and map being mutually exclusive in the corpsman vendor (#…
Browse files Browse the repository at this point in the history
…6479)

# About the pull request
gloves and the map are no longer mutually exclusive in the corpsman
vendor because the gloves are now flagged as gloves instead of kit. the
map is flagged as kit.

# Explain why it's good for the game
Fixes #6476


# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>

# Changelog
:cl:
fix: fixed corpsmen gloves and the map being mutually exclusive in the
corpsman vendor
/:cl:

Co-authored-by: nefarious <[email protected]>
  • Loading branch information
ColdIronWarrior and nefarious committed Jun 16, 2024
1 parent 62bb5cc commit 85e989c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_medic, list(
GLOBAL_LIST_INIT(cm_vending_clothing_medic, list(
list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null),
list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine/medic, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/marine, /obj/item/clothing/head/helmet/marine/medic), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY),
list("Combat Sterile Gloves", 0, /obj/item/clothing/gloves/marine/medical, MARINE_CAN_BUY_KIT, VENDOR_ITEM_REGULAR),
list("Combat Sterile Gloves", 0, /obj/item/clothing/gloves/marine/medical, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_REGULAR),
list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY),
list("Map", 0, /obj/item/map/current_map, MARINE_CAN_BUY_KIT, VENDOR_ITEM_MANDATORY),

Expand Down

0 comments on commit 85e989c

Please sign in to comment.