Skip to content

Commit

Permalink
Merge pull request #168 from honkpocket/let-me-get-drunk
Browse files Browse the repository at this point in the history
Adds the 'Synth-drink' tab to the booze-o-mat and improves the glassware tab
  • Loading branch information
Nerev4r authored Oct 19, 2024
2 parents adf26b9 + 156e93b commit 0d91cee
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 11 deletions.
4 changes: 2 additions & 2 deletions code/modules/vending/boozeomat.dm
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
/obj/item/reagent_containers/cup/soda_cans/melon_soda = 5,
),
),

/* DOPPLER EDIT REMOVAL START
list(
"name" = "Glassware",
"icon" = "wine-glass",
Expand All @@ -69,7 +69,7 @@
/obj/item/reagent_containers/cup/glass/bottle = 15,
/obj/item/reagent_containers/cup/glass/bottle/small = 15,
),
),
), DOPPLER EDIT REMOVAL END*/
)

contraband = list(
Expand Down
23 changes: 20 additions & 3 deletions modular_doppler/modular_vending/code/tg_vendors/boozeomat.dm
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
/obj/machinery/vending/boozeomat
product_categories_doppler = list(
list(
"name" = "Synth",
"name" = "Synth-Drinks",
"icon" = "robot",
"products" = list(
// /obj/item/reagent_containers/cup/soda_cans/doppler/synthanolcan = 6,
),
/obj/item/reagent_containers/cup/soda_cans/doppler/synthanolcan = 6,
/obj/item/reagent_containers/cup/soda_cans/doppler/lubricola = 3,
/obj/item/reagent_containers/cup/soda_cans/doppler/welding_fizz = 3,
),
),
list(
"name" = "Glassware",
"icon" = "wine-glass",
"products" = list(
/obj/item/reagent_containers/cup/glass/drinkingglass = 30,
/obj/item/reagent_containers/cup/glass/drinkingglass/shotglass = 12,
/obj/item/reagent_containers/cup/glass/colocup = 12,
/obj/item/reagent_containers/cup/glass/flask = 3,
/obj/item/reagent_containers/cup/glass/bottle = 15,
/obj/item/reagent_containers/cup/glass/bottle/small = 15,
/obj/item/reagent_containers/cup/beaker/large = 3,
/obj/item/reagent_containers/cup/beaker = 6,
/obj/item/reagent_containers/cup/tube = 6,
),
),
)
5 changes: 0 additions & 5 deletions modular_doppler/modular_vending/code/tg_vendors/cola.dm

This file was deleted.

1 change: 0 additions & 1 deletion tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -6941,7 +6941,6 @@
#include "modular_doppler\modular_vending\code\tg_vendors\autodrobe.dm"
#include "modular_doppler\modular_vending\code\tg_vendors\boozeomat.dm"
#include "modular_doppler\modular_vending\code\tg_vendors\clothesmate.dm"
#include "modular_doppler\modular_vending\code\tg_vendors\cola.dm"
#include "modular_doppler\modular_vending\code\tg_vendors\engivend.dm"
#include "modular_doppler\modular_vending\code\tg_vendors\games.dm"
#include "modular_doppler\modular_vending\code\tg_vendors\megaseed.dm"
Expand Down

0 comments on commit 0d91cee

Please sign in to comment.