diff --git a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm index c41d71f9bcd..55aafcf89cd 100644 --- a/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm +++ b/code/modules/food_and_drinks/kitchen_machinery/smartfridge.dm @@ -809,8 +809,7 @@ desc = "A wooden contraption, used to dry plant products, food and leather." icon = 'icons/obj/hydroponics/equipment.dmi' icon_state = "drying_rack" - idle_power_consumption = 5 - active_power_consumption = 200 + requires_power = FALSE can_dry = TRUE visible_contents = FALSE light_range_on = null @@ -836,14 +835,6 @@ /obj/machinery/smartfridge/drying_rack/RefreshParts() return -/obj/machinery/smartfridge/drying_rack/power_change() - if(has_power() && anchored) - stat &= ~NOPOWER - else - stat |= NOPOWER - toggle_drying(TRUE) - update_icon(UPDATE_OVERLAYS) - /obj/machinery/smartfridge/drying_rack/screwdriver_act(mob/living/user, obj/item/I) return @@ -866,13 +857,9 @@ switch(action) if("drying") drying = !drying - change_power_mode(drying ? ACTIVE_POWER_USE : IDLE_POWER_USE) update_icon(UPDATE_OVERLAYS) /obj/machinery/smartfridge/drying_rack/update_overlays() - if(stat & NOPOWER) - . += "drying_rack_off" - return if(drying) . += "drying_rack_drying" if(length(contents)) @@ -900,10 +887,8 @@ /obj/machinery/smartfridge/drying_rack/proc/toggle_drying(forceoff) if(drying || forceoff) drying = FALSE - change_power_mode(IDLE_POWER_USE) else drying = TRUE - change_power_mode(ACTIVE_POWER_USE) update_icon(UPDATE_OVERLAYS) /** diff --git a/icons/obj/hydroponics/equipment.dmi b/icons/obj/hydroponics/equipment.dmi index 96e49013d53..306e62de5f8 100644 Binary files a/icons/obj/hydroponics/equipment.dmi and b/icons/obj/hydroponics/equipment.dmi differ