Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix medbay vendor access #5597

Merged
merged 1 commit into from
Feb 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions code/game/machinery/vending/vendor_types/medical.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
name = "\improper Wey-Med Plus"
desc = "Medical Pharmaceutical dispenser. Provided by Wey-Yu Pharmaceuticals Division(TM)."
icon_state = "med"
req_access = list(ACCESS_MARINE_MEDBAY, ACCESS_MARINE_CHEMISTRY)
req_access = list(ACCESS_MARINE_MEDBAY)

unacidable = TRUE
unslashable = FALSE
Expand Down Expand Up @@ -183,6 +183,7 @@
name = "\improper Wey-Chem Plus"
desc = "Medical chemistry dispenser. Provided by Wey-Yu Pharmaceuticals Division(TM)."
icon_state = "chem"
req_access = list(ACCESS_MARINE_CHEMISTRY)

healthscan = FALSE
chem_refill = list(
Expand Down Expand Up @@ -221,7 +222,6 @@
req_access = list()

/obj/structure/machinery/cm_vending/sorted/medical/bolted
req_access = list()
wrenchable = FALSE

/obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access
Expand Down Expand Up @@ -300,7 +300,6 @@
stack_refill = null

/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted
req_access = list()
wrenchable = FALSE

/obj/structure/machinery/cm_vending/sorted/medical/blood/populate_product_list(scale)
Expand Down
Loading