From d64d76e4885077b84298d3ad0c34673d7c884efa Mon Sep 17 00:00:00 2001 From: lessthanthree <83487515+lessthnthree@users.noreply.github.com> Date: Tue, 26 Dec 2023 15:42:22 +0000 Subject: [PATCH] Fixes vending machine distribution (#891) ## About The Pull Request Fixes the vending machine spawn table so it isn't 90% imported vendors and zero drink machines. ## Why It's Good For The Game One more shift where I have to run across the station past 10 Moffic vending machines to only find out there isn't a single drink machine on the station, I'm going to punch through a reinforced wall. ## Changelog :cl: LT3 fix: The missing cold drink vending machines have been found in storage /:cl: --------- Co-authored-by: projectkepler-RU <99981766+projectkepler-ru@users.noreply.github.com> Co-authored-by: Waterpig <49160555+Majkl-J@users.noreply.github.com> --- .../effects/spawners/random/vending.dm | 29 ++++++++----------- 1 file changed, 12 insertions(+), 17 deletions(-) diff --git a/modular_zubbers/code/game/objects/effects/spawners/random/vending.dm b/modular_zubbers/code/game/objects/effects/spawners/random/vending.dm index 57b528cbe4b..069a10eb83e 100644 --- a/modular_zubbers/code/game/objects/effects/spawners/random/vending.dm +++ b/modular_zubbers/code/game/objects/effects/spawners/random/vending.dm @@ -1,32 +1,27 @@ /obj/effect/spawner/random/vending/snackvend loot_type_path = null loot = list( - /obj/machinery/vending/imported = 100, - /obj/machinery/vending/imported/yangyu = 100, - /obj/machinery/vending/imported/mothic = 100, - /obj/machinery/vending/imported/tiziran = 100, - /obj/machinery/vending/halloween_chocolate = 100, - /obj/machinery/vending/snack = 20, - /obj/machinery/vending/snack/blue = 20, - /obj/machinery/vending/snack/green = 20, - /obj/machinery/vending/snack/orange = 20, - /obj/machinery/vending/snack/teal = 20 + /obj/machinery/vending/imported = 3, + /obj/machinery/vending/imported/yangyu = 3, + /obj/machinery/vending/imported/mothic = 3, + /obj/machinery/vending/imported/tiziran = 3, + /obj/machinery/vending/halloween_chocolate = 2, + /obj/machinery/vending/snack/blue = 1, + /obj/machinery/vending/snack/green = 1, + /obj/machinery/vending/snack/orange = 1, + /obj/machinery/vending/snack/teal = 1, ) -/obj/effect/spawner/random/vending/colavend //These can serve both snacks AND drinks so its kinda both of them? +/obj/effect/spawner/random/vending/colavend loot_type_path = null loot = list( - /obj/machinery/vending/imported = 100, - /obj/machinery/vending/imported/yangyu = 100, - /obj/machinery/vending/imported/mothic = 100, - /obj/machinery/vending/imported/tiziran = 100, /obj/machinery/vending/cola/black = 5, /obj/machinery/vending/cola/blue = 5, /obj/machinery/vending/cola/pwr_game = 5, /obj/machinery/vending/cola/red = 5, - /obj/machinery/vending/cola/shamblers = 50, + /obj/machinery/vending/cola/shamblers = 10, /obj/machinery/vending/cola/sodie = 5, /obj/machinery/vending/cola/space_up = 5, /obj/machinery/vending/cola/starkist = 5, - /obj/machinery/vending/sovietsoda = 1 + /obj/machinery/vending/sovietsoda = 1, )