From 747a19f06fb3faad2754e7dab0807397a47ed02e Mon Sep 17 00:00:00 2001 From: gl0ck <102577236+efzapa@users.noreply.github.com> Date: Tue, 17 Sep 2024 10:17:27 -0400 Subject: [PATCH] Adds MREs to the ColMarTech Food Vendor (#7111) # About the pull request Adds 15 MREs to each ColMarTech Food Vendor on the Almayer # Explain why it's good for the game Marines basically already get infinite MREs anyways, no harm in adding them if shipside personnel like MPs want to grab food on the go and not have a whole plate of food just in their bag, which is weird. # Testing Photographs and Procedure
Screenshots & Videos https://github.com/user-attachments/assets/6a711776-d791-48b6-946f-b7495cbf8022
# Changelog :cl: add: All ColMarTech Food Vendors now have 15 MREs /:cl: --- code/game/machinery/vending/vendor_types/food.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/machinery/vending/vendor_types/food.dm b/code/game/machinery/vending/vendor_types/food.dm index 62ed5124727e..81344aca1058 100644 --- a/code/game/machinery/vending/vendor_types/food.dm +++ b/code/game/machinery/vending/vendor_types/food.dm @@ -11,6 +11,7 @@ /obj/structure/machinery/cm_vending/sorted/marine_food/populate_product_list(scale) listed_products = list( list("PREPARED MEALS", -1, null, null), + list("USCM Meal Ready to Eat", 15, /obj/item/storage/box/MRE, VENDOR_ITEM_REGULAR), list("USCM Prepared Meal (Chicken)", 15, /obj/item/reagent_container/food/snacks/mre_pack/meal5, VENDOR_ITEM_REGULAR), list("USCM Prepared Meal (Cornbread)", 15, /obj/item/reagent_container/food/snacks/mre_pack/meal1, VENDOR_ITEM_REGULAR), list("USCM Prepared Meal (Pasta)", 15, /obj/item/reagent_container/food/snacks/mre_pack/meal3, VENDOR_ITEM_REGULAR),