diff --git a/code/datums/components/crafting/recipes.dm b/code/datums/components/crafting/recipes.dm index 17842a4f536..b74eee0faf3 100644 --- a/code/datums/components/crafting/recipes.dm +++ b/code/datums/components/crafting/recipes.dm @@ -775,6 +775,13 @@ result = /obj/item/paper_bin/bundlenatural category = CAT_MISC +/datum/crafting_recipe/sillycup + name = "Paper Cup" + result = /obj/item/reagent_containers/food/drinks/sillycup + time = 1 SECONDS + reqs = list(/obj/item/paper = 2) + category = CAT_MISC + /datum/crafting_recipe/toysword name = "Toy Sword" reqs = list(/obj/item/light/bulb = 1, /obj/item/stack/cable_coil = 1, /obj/item/stack/sheet/plastic = 4) diff --git a/code/modules/food_and_drinks/kitchen_machinery/icecream_vat.dm b/code/modules/food_and_drinks/kitchen_machinery/icecream_vat.dm index b924bacf4cb..7fa003394f4 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/icecream_vat.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/icecream_vat.dm @@ -38,7 +38,7 @@ else qdel(cone) - create_reagents(100, NO_REACT | OPENCONTAINER) + create_reagents(300, NO_REACT | OPENCONTAINER) reagents.chem_temp = T0C //So ice doesn't melt for(var/flavour in GLOB.ice_cream_flavours) if(GLOB.ice_cream_flavours[flavour].hidden)