diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index c2e98193ad0..2c8fa467c2f 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -12,7 +12,8 @@ idle_power_usage = 10 active_power_usage = 100 circuit = /obj/item/circuitboard/machine/autolathe - + layer = BELOW_OBJ_LAYER + var/operating = FALSE var/list/L = list() var/list/LL = list() diff --git a/code/modules/mining/machine_redemption.dm b/code/modules/mining/machine_redemption.dm index 2b6cacc348e..b3b7bd29d33 100644 --- a/code/modules/mining/machine_redemption.dm +++ b/code/modules/mining/machine_redemption.dm @@ -13,6 +13,7 @@ req_access = list(ACCESS_MINERAL_STOREROOM) speed_process = TRUE circuit = /obj/item/circuitboard/machine/ore_redemption + layer = BELOW_OBJ_LAYER var/req_access_reclaim = ACCESS_MINING_STATION var/obj/item/card/id/inserted_id var/points = 0 diff --git a/code/modules/research/machinery/_production.dm b/code/modules/research/machinery/_production.dm index 3c5f09a978d..1d7569464b8 100644 --- a/code/modules/research/machinery/_production.dm +++ b/code/modules/research/machinery/_production.dm @@ -2,7 +2,7 @@ name = "technology fabricator" desc = "Makes researched and prototype items with materials and energy." container_type = OPENCONTAINER - + layer = BELOW_OBJ_LAYER var/consoleless_interface = FALSE //Whether it can be used without a console. var/efficiency_coeff = 1 //Materials needed / coeff = actual. var/list/categories = list()