From 19a90b6bd35d0e0193f8e9bca65d87f55e5b6054 Mon Sep 17 00:00:00 2001 From: Rykka Date: Thu, 6 Aug 2020 00:19:12 -0400 Subject: [PATCH] Aurora Cooking Pre-heating bugfix Appliances previously had 60k resist and 30k resist, for fryer and oven respectively. This meant that fryer would heat up in 62 minutes and oven would heat in 35-45. Obviously completely out of wack. Now grill heats in at 6:50, fryer at 10:35, and oven at 12:10 to reach peak/cap temperatures! --- code/modules/food/kitchen/cooking_machines/fryer.dm | 4 ++-- code/modules/food/kitchen/cooking_machines/oven.dm | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/code/modules/food/kitchen/cooking_machines/fryer.dm b/code/modules/food/kitchen/cooking_machines/fryer.dm index 941c7d6b64c..6c2e0d9b71c 100644 --- a/code/modules/food/kitchen/cooking_machines/fryer.dm +++ b/code/modules/food/kitchen/cooking_machines/fryer.dm @@ -12,7 +12,7 @@ circuit = /obj/item/weapon/circuitboard/fryer appliancetype = FRYER active_power_usage = 12 KILOWATTS - heating_power = 12000 + heating_power = 12 KILOWATTS light_y = 15 @@ -24,7 +24,7 @@ // Power used to maintain temperature once it's heated. // Going with 25% of the active power. This is a somewhat arbitrary value. - resistance = 60000 // Approx. 10 minutes to heat up. + resistance = 10 KILOWATTS // Approx. 10 minutes to heat up. max_contents = 2 container_type = /obj/item/weapon/reagent_containers/cooking_container/fryer diff --git a/code/modules/food/kitchen/cooking_machines/oven.dm b/code/modules/food/kitchen/cooking_machines/oven.dm index 2afcf0a2514..c195f937c98 100644 --- a/code/modules/food/kitchen/cooking_machines/oven.dm +++ b/code/modules/food/kitchen/cooking_machines/oven.dm @@ -9,10 +9,10 @@ can_burn_food = TRUE circuit = /obj/item/weapon/circuitboard/oven active_power_usage = 6 KILOWATTS - heating_power = 6000 + heating_power = 6 KILOWATTS //Based on a double deck electric convection oven - resistance = 30000 // Approx. 12 minutes to heat up. + resistance = 12 KILOWATTS // Approx. 12 minutes to heat up. idle_power_usage = 2 KILOWATTS //uses ~30% power to stay warm optimal_power = 0.8 // Oven cooks .2 faster than the default speed.