From e6cd7eb0dfda03dd63cdc73d45002ab916319562 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Tue, 30 Apr 2024 00:48:36 +0200 Subject: [PATCH] [MIRROR] Fixes a couple mistakenly overwritten typepaths (#27494) * Fixes a couple mistakenly overwritten typepaths (#82896) ## About The Pull Request Fixes some stuff not existing because they weren't named good enough. Whoops. ## Why It's Good For The Game You know the deal ## Changelog :cl: fix: minebot shields are now actually orderable fix: vinegar may once again be crafted with wine, water, and sugar /:cl: * Fixes a couple mistakenly overwritten typepaths --------- Co-authored-by: FlufflesTheDog --- .../computer/orders/order_items/mining/order_toys.dm | 2 +- code/modules/food_and_drinks/recipes/food_mixtures.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/computer/orders/order_items/mining/order_toys.dm b/code/game/machinery/computer/orders/order_items/mining/order_toys.dm index 7ee4c6cfba8..fab03cabaa4 100644 --- a/code/game/machinery/computer/orders/order_items/mining/order_toys.dm +++ b/code/game/machinery/computer/orders/order_items/mining/order_toys.dm @@ -25,7 +25,7 @@ item_path = /obj/item/mine_bot_upgrade/regnerative_shield cost_per_order = 500 -/datum/orderable_item/toys_drones/drone_shield +/datum/orderable_item/toys_drones/drone_remote item_path = /obj/item/minebot_remote_control cost_per_order = 500 diff --git a/code/modules/food_and_drinks/recipes/food_mixtures.dm b/code/modules/food_and_drinks/recipes/food_mixtures.dm index f7e72b6a48d..e9a9405264a 100644 --- a/code/modules/food_and_drinks/recipes/food_mixtures.dm +++ b/code/modules/food_and_drinks/recipes/food_mixtures.dm @@ -268,7 +268,7 @@ required_reagents = list(/datum/reagent/consumable/olivepaste = 4, /datum/reagent/water = 1) reaction_flags = REACTION_INSTANT -/datum/chemical_reaction/food/vinegar +/datum/chemical_reaction/food/wine_vinegar results = list(/datum/reagent/consumable/vinegar = 5) required_reagents = list(/datum/reagent/consumable/ethanol/wine = 1, /datum/reagent/water = 1, /datum/reagent/consumable/sugar = 1) reaction_flags = REACTION_INSTANT @@ -286,7 +286,7 @@ mix_message = "A smooth batter forms." reaction_flags = REACTION_INSTANT -/datum/chemical_reaction/food/vinegar +/datum/chemical_reaction/food/grape_vinegar results = list(/datum/reagent/consumable/vinegar = 5) required_reagents = list(/datum/reagent/consumable/grapejuice = 5) required_catalysts = list(/datum/reagent/consumable/enzyme = 5)