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.