mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-16 18:45:22 +01:00
Removes vestigial req_access from vending machines + some cleanup (#86550)
## About The Pull Request Once upon a time, vending machines were access locked I guess? It's been so many years since that has been the case that most people don't remember (including myself). This just removes all the old unused req_access lists that reside on the various vending machines. ## Why It's Good For The Game Less chance of cargo culting something that serves no purpose anymore. ## Changelog Nothing player facing I should hope --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com>
This commit is contained in:
@@ -13,41 +13,46 @@ GLOBAL_VAR_INIT(fscpassword, generate_password())
|
||||
. = ..()
|
||||
password = "[GLOB.fscpassword]"
|
||||
|
||||
/obj/machinery/vending/medical/syndicate_access/cybersun
|
||||
/obj/machinery/vending/medical/syndicate/cybersun
|
||||
name = "\improper CyberMed ++"
|
||||
desc = "An advanced vendor that dispenses medical drugs, both recreational and medicinal."
|
||||
products = list(/obj/item/reagent_containers/syringe = 4,
|
||||
/obj/item/healthanalyzer = 4,
|
||||
/obj/item/reagent_containers/pill/patch/libital = 5,
|
||||
/obj/item/reagent_containers/pill/patch/aiuri = 5,
|
||||
/obj/item/reagent_containers/cup/bottle/multiver = 1,
|
||||
/obj/item/reagent_containers/cup/bottle/syriniver = 1,
|
||||
/obj/item/reagent_containers/cup/bottle/epinephrine = 3,
|
||||
/obj/item/reagent_containers/cup/bottle/morphine = 3,
|
||||
/obj/item/reagent_containers/cup/bottle/potass_iodide = 1,
|
||||
/obj/item/reagent_containers/cup/bottle/salglu_solution = 3,
|
||||
/obj/item/reagent_containers/syringe/antiviral = 5,
|
||||
/obj/item/reagent_containers/medigel/libital = 2,
|
||||
/obj/item/reagent_containers/medigel/aiuri = 2,
|
||||
/obj/item/reagent_containers/medigel/sterilizine = 1)
|
||||
products = list(
|
||||
/obj/item/reagent_containers/syringe = 4,
|
||||
/obj/item/healthanalyzer = 4,
|
||||
/obj/item/reagent_containers/pill/patch/libital = 5,
|
||||
/obj/item/reagent_containers/pill/patch/aiuri = 5,
|
||||
/obj/item/reagent_containers/cup/bottle/multiver = 1,
|
||||
/obj/item/reagent_containers/cup/bottle/syriniver = 1,
|
||||
/obj/item/reagent_containers/cup/bottle/epinephrine = 3,
|
||||
/obj/item/reagent_containers/cup/bottle/morphine = 3,
|
||||
/obj/item/reagent_containers/cup/bottle/potass_iodide = 1,
|
||||
/obj/item/reagent_containers/cup/bottle/salglu_solution = 3,
|
||||
/obj/item/reagent_containers/syringe/antiviral = 5,
|
||||
/obj/item/reagent_containers/medigel/libital = 2,
|
||||
/obj/item/reagent_containers/medigel/aiuri = 2,
|
||||
/obj/item/reagent_containers/medigel/sterilizine = 1,
|
||||
)
|
||||
contraband = list(/obj/item/reagent_containers/cup/bottle/cold = 2,
|
||||
/obj/item/restraints/handcuffs = 4,
|
||||
/obj/item/storage/backpack/duffelbag/syndie/surgery = 1,
|
||||
/obj/item/storage/medkit/tactical = 1)
|
||||
premium = list(/obj/item/storage/pill_bottle/psicodine = 2,
|
||||
/obj/item/reagent_containers/hypospray/medipen = 3,
|
||||
/obj/item/reagent_containers/hypospray/medipen/atropine = 2,
|
||||
/obj/item/storage/medkit/regular = 3,
|
||||
/obj/item/storage/medkit/brute = 1,
|
||||
/obj/item/storage/medkit/fire = 1,
|
||||
/obj/item/storage/medkit/toxin = 1,
|
||||
/obj/item/storage/medkit/o2 = 1,
|
||||
/obj/item/storage/medkit/advanced = 1,
|
||||
/obj/item/defibrillator/loaded = 1,
|
||||
/obj/item/wallframe/defib_mount = 1,
|
||||
/obj/item/sensor_device = 2,
|
||||
/obj/item/pinpointer/crew = 2,
|
||||
/obj/item/shears = 1)
|
||||
/obj/item/restraints/handcuffs = 4,
|
||||
/obj/item/storage/backpack/duffelbag/syndie/surgery = 1,
|
||||
/obj/item/storage/medkit/tactical = 1,
|
||||
)
|
||||
premium = list(
|
||||
/obj/item/storage/pill_bottle/psicodine = 2,
|
||||
/obj/item/reagent_containers/hypospray/medipen = 3,
|
||||
/obj/item/reagent_containers/hypospray/medipen/atropine = 2,
|
||||
/obj/item/storage/medkit/regular = 3,
|
||||
/obj/item/storage/medkit/brute = 1,
|
||||
/obj/item/storage/medkit/fire = 1,
|
||||
/obj/item/storage/medkit/toxin = 1,
|
||||
/obj/item/storage/medkit/o2 = 1,
|
||||
/obj/item/storage/medkit/advanced = 1,
|
||||
/obj/item/defibrillator/loaded = 1,
|
||||
/obj/item/wallframe/defib_mount = 1,
|
||||
/obj/item/sensor_device = 2,
|
||||
/obj/item/pinpointer/crew = 2,
|
||||
/obj/item/shears = 1,
|
||||
)
|
||||
|
||||
/////////// forgottenship lore
|
||||
|
||||
|
||||
Reference in New Issue
Block a user