mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 20:47:10 +01:00
Default cook surface temperature tweak (#31216)
* Changed default cooking temperature from Low to Medium * Fixed ice cream mixer and deep fryer breaking due to default temp change
This commit is contained in:
@@ -8,7 +8,7 @@ RESTRICT_TYPE(/datum/cooking_surface)
|
||||
var/surface_name = "surface"
|
||||
var/cooker_id
|
||||
var/obj/machinery/cooking/parent
|
||||
var/temperature = J_LO
|
||||
var/temperature = J_MED
|
||||
var/timer = 0
|
||||
var/cooktime
|
||||
var/obj/item/reagent_containers/cooking/container
|
||||
|
||||
@@ -130,7 +130,7 @@
|
||||
cooker_surface_name = COOKER_SURFACE_ICE_CREAM_MIXER
|
||||
|
||||
/datum/cooking/recipe_step/use_machine/ice_cream_mixer/New(time_, options)
|
||||
..(J_LO, time_, options)
|
||||
..(J_MED, time_, options)
|
||||
|
||||
/datum/cooking/recipe_step/use_machine/ice_cream_mixer/get_pda_formatted_desc()
|
||||
return "Mix in an ice cream mixer for [DisplayTimeText(time)]."
|
||||
@@ -157,7 +157,7 @@
|
||||
cooker_surface_name = COOKER_SURFACE_DEEPFRYER
|
||||
|
||||
/datum/cooking/recipe_step/use_machine/deepfryer/New(time_, options)
|
||||
..(J_LO, time_, options)
|
||||
..(J_MED, time_, options)
|
||||
|
||||
/datum/cooking/recipe_step/use_machine/deepfryer/get_pda_formatted_desc()
|
||||
return "Deep-fry for [DisplayTimeText(time)]."
|
||||
|
||||
Reference in New Issue
Block a user