From bb6ff349dabb73a15c517c0af2bee653ad41a6f5 Mon Sep 17 00:00:00 2001 From: FalseIncarnate Date: Sun, 23 Jul 2017 02:32:18 -0400 Subject: [PATCH] Fixing offset/layer for north state sinks --- code/game/objects/structures/watercloset.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/structures/watercloset.dm b/code/game/objects/structures/watercloset.dm index 92f5e75c6e9..400c38a7415 100644 --- a/code/game/objects/structures/watercloset.dm +++ b/code/game/objects/structures/watercloset.dm @@ -642,6 +642,7 @@ /obj/structure/sink/update_icon() ..() + layer = OBJ_LAYER if(!anchored) pixel_x = 0 pixel_y = 0 @@ -655,7 +656,9 @@ else //normal sinks if(dir == NORTH || dir == SOUTH) pixel_x = 0 - pixel_y = (dir == NORTH) ? -30 : 30 + pixel_y = (dir == NORTH) ? -5 : 30 + if(dir == NORTH) + layer = FLY_LAYER else pixel_x = (dir == EAST) ? 12 : -12 pixel_y = 0