Skip to content

Commit

Permalink
Merge pull request #5838 from Trilbyspaceclone/microwave_fix
Browse files Browse the repository at this point in the history
Cooking tweaks + fixes
  • Loading branch information
Trilbyspaceclone authored Nov 13, 2024
2 parents 411c9d8 + 9bd2e8a commit 4c97610
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions code/game/objects/structures/watercloset.dm
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,10 @@
to_chat(user, SPAN_WARNING("Someone's already washing here."))
return

if(istype(O, /obj/item/reagent_containers/cooking_with_jane))
to_chat(user, SPAN_WARNING("The [O] doesn‘t seem to accept water directly from the tap. Use a beaker or other proxy to add reagents."))
return

var/obj/item/reagent_containers/RG = O
if (istype(RG) && RG.is_refillable())
var/amount_to_add = min(RG.volume - RG.reagents.total_volume, RG.amount_per_transfer_from_this)
Expand Down
2 changes: 1 addition & 1 deletion code/modules/cooking_with_jane/recipes/recipe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@
cooking_container = OVEN
product_type = /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit
step_builder = list(
list(CWJ_ADD_ITEM, /obj/item/reagent_containers/food/snacks/sliceable/flatdough, qmod=0.5),
list(CWJ_ADD_ITEM, /obj/item/reagent_containers/food/snacks/doughslice, qmod=0.5),
list(CWJ_ADD_PRODUCE, "plumphelmet", qmod=0.2, reagent_skip=TRUE),
list(CWJ_ADD_REAGENT, "water", 5),
list(CWJ_ADD_REAGENT, "flour", 5),
Expand Down
8 changes: 4 additions & 4 deletions code/modules/food/recipes_microwave.dm
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ I said no!
result = /obj/item/reagent_containers/food/snacks/sliceable/pizza/meatpizza

/datum/recipe/mushroompizza
fruit = list("mushroom" = 5, "tomato" = 1)
fruit = list("plumphelmet" = 5, "tomato" = 1)
items = list(
/obj/item/reagent_containers/food/snacks/sliceable/flatdough,
/obj/item/reagent_containers/food/snacks/cheesewedge
Expand Down Expand Up @@ -837,7 +837,7 @@ I said no!
result = /obj/item/reagent_containers/food/snacks/rofflewaffles

/datum/recipe/stew
fruit = list("potato" = 1, "tomato" = 1, "carrot" = 1, "mushroom" = 1) // No eggplant! Terrible!
fruit = list("potato" = 1, "tomato" = 1, "carrot" = 1, "plumphelmet" = 1) // No eggplant! Terrible!
reagents = list("water" = 10)
items = list(/obj/item/reagent_containers/food/snacks/meat)
result = /obj/item/reagent_containers/food/snacks/stew
Expand Down Expand Up @@ -1084,12 +1084,12 @@ I said no!
result = /obj/item/reagent_containers/food/snacks/plumphelmetbiscuit

/datum/recipe/mushroomsoup
fruit = list("mushroom" = 1)
fruit = list("plumphelmet" = 1)
reagents = list("milk" = 5, "cream" = 5, "sodiumchloride" = 1, "blackpepper" = 1)
result = /obj/item/reagent_containers/food/snacks/mushroomsoup

/datum/recipe/chawanmushi
fruit = list("mushroom" = 1)
fruit = list("plumphelmet" = 1)
reagents = list("water" = 5, "soysauce" = 5)
items = list(
/obj/item/reagent_containers/food/snacks/egg,
Expand Down

0 comments on commit 4c97610

Please sign in to comment.