From 48dbaf4b37bce5472a53b7ff06a8a3a2d21ee9ee Mon Sep 17 00:00:00 2001 From: AnturK Date: Thu, 22 Mar 2018 11:10:17 +0100 Subject: [PATCH] Fixes protolathe and autolathe layering in 512 --- code/game/machinery/autolathe.dm | 3 ++- code/modules/mining/machine_redemption.dm | 1 + code/modules/research/machinery/_production.dm | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index ff90d9f8347..ac2fcdeb3f4 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 a9cec0a01b7..67967884803 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()