diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index fccb4488232..0b2ed59a52d 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -68,11 +68,11 @@ #define BELOW_OBJ_LAYER 2.9 #define LOW_ITEM_LAYER 2.95 //#define OBJ_LAYER 3 //For easy recordkeeping; this is a byond define -#define CLOSED_BLASTDOOR_LAYER 3.05 #define CLOSED_DOOR_LAYER 3.1 #define CLOSED_FIREDOOR_LAYER 3.11 -#define SHUTTER_LAYER 3.12 // HERE BE DRAGONS #define ABOVE_OBJ_LAYER 3.2 +#define CLOSED_BLASTDOOR_LAYER 3.3 // ABOVE WINDOWS AND DOORS +#define SHUTTER_LAYER 3.3 // HERE BE DRAGONS #define ABOVE_WINDOW_LAYER 3.3 #define SIGN_LAYER 3.4 #define CORGI_ASS_PIN_LAYER 3.41 diff --git a/code/datums/components/crafting/recipes.dm b/code/datums/components/crafting/recipes.dm index 069b5513d56..8206fb3618b 100644 --- a/code/datums/components/crafting/recipes.dm +++ b/code/datums/components/crafting/recipes.dm @@ -1208,13 +1208,13 @@ /datum/crafting_recipe/shutters name = "Shutters" - reqs = list(/obj/item/stack/sheet/plasteel = 10, - /obj/item/stack/cable_coil = 10, + reqs = list(/obj/item/stack/sheet/plasteel = 5, + /obj/item/stack/cable_coil = 5, /obj/item/electronics/airlock = 1 ) result = /obj/machinery/door/poddoor/shutters/preopen tool_behaviors = list(TOOL_SCREWDRIVER, TOOL_MULTITOOL, TOOL_WIRECUTTER, TOOL_WELDER) - time = 15 SECONDS + time = 10 SECONDS category = CAT_MISC one_per_turf = TRUE