Skip to content

Commit

Permalink
[MIRROR] Fixes a couple mistakenly overwritten typepaths (#2212)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
2 people authored and StealsThePRs committed Apr 28, 2024
1 parent f7f0a72 commit 3107fdc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions code/modules/food_and_drinks/recipes/food_mixtures.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down

0 comments on commit 3107fdc

Please sign in to comment.