diff --git a/modular_skyrat/modules/primitive_structures/code/storage_structures.dm b/modular_skyrat/modules/primitive_structures/code/storage_structures.dm index 8c6f872c712..a9c1ce0b9fb 100644 --- a/modular_skyrat/modules/primitive_structures/code/storage_structures.dm +++ b/modular_skyrat/modules/primitive_structures/code/storage_structures.dm @@ -57,15 +57,15 @@ icon_state = "producebin" icon = 'modular_skyrat/modules/primitive_structures/icons/storage.dmi' resistance_flags = FLAMMABLE - visible_contents = FALSE base_build_path = /obj/machinery/smartfridge/producebin + contents_icon_state = "produce" use_power = NO_POWER_USE light_power = 0 idle_power_usage = 0 circuit = null has_emissive = FALSE can_atmos_pass = ATMOS_PASS_YES - visible_contents = FALSE + visible_contents = TRUE /obj/machinery/smartfridge/producebin/accept_check(obj/item/weapon) return (istype(weapon, /obj/item/food/grown)) @@ -88,15 +88,15 @@ icon_state = "seedshelf" icon = 'modular_skyrat/modules/primitive_structures/icons/storage.dmi' resistance_flags = FLAMMABLE - visible_contents = FALSE base_build_path = /obj/machinery/smartfridge/seedshelf + contents_icon_state = "seed" use_power = NO_POWER_USE light_power = 0 idle_power_usage = 0 circuit = null has_emissive = FALSE can_atmos_pass = ATMOS_PASS_YES - visible_contents = FALSE + visible_contents = TRUE /obj/machinery/smartfridge/seedshelf/accept_check(obj/item/weapon) return istype(weapon, /obj/item/seeds) diff --git a/modular_skyrat/modules/primitive_structures/icons/storage.dmi b/modular_skyrat/modules/primitive_structures/icons/storage.dmi index 2b71389146d..1c2c3626321 100644 Binary files a/modular_skyrat/modules/primitive_structures/icons/storage.dmi and b/modular_skyrat/modules/primitive_structures/icons/storage.dmi differ