Removes a pixel_w var from a window spawner on icebox (#52230)

* Removes a pixel_w var from a window spawner on icebox

* grep check

* more
This commit is contained in:
ShizCalev
2020-07-15 22:23:46 +08:00
committed by GitHub
parent 9a541bd7a7
commit ac7a4aff33
5 changed files with 8 additions and 7 deletions
@@ -20426,7 +20426,7 @@
},
/obj/item/storage/box/shipping{
pixel_x = 4;
pixel_z = 4
pixel_y = 4
},
/turf/open/floor/plasteel,
/area/quartermaster/sorting)
@@ -52279,9 +52279,7 @@
/turf/open/floor/plasteel/white,
/area/medical/medbay)
"hnW" = (
/obj/effect/spawner/structure/window/reinforced{
pixel_w = 1
},
/obj/effect/spawner/structure/window/reinforced,
/turf/closed/wall,
/area/maintenance/starboard/aft)
"hox" = (
+1 -1
View File
@@ -29983,7 +29983,7 @@
"bro" = (
/obj/structure/cable,
/obj/machinery/firealarm{
pixel_z = -28
pixel_y = -28
},
/obj/machinery/atmospherics/components/unary/vent_pump/on{
dir = 8
+1 -2
View File
@@ -262,8 +262,7 @@
"aR" = (
/obj/structure/mirror{
pixel_x = -23;
pixel_y = -4;
pixel_z = 2
pixel_y = -2
},
/obj/structure/sink/greyscale{
dir = 4;
+4
View File
@@ -18,6 +18,10 @@ if grep -P 'step_[xy]' _maps/**/*.dmm; then
echo "ERROR: step_x/step_y variables detected in maps, please remove them."
st=1
fi;
if grep -P 'pixel_[^xy]' _maps/**/*.dmm; then
echo "ERROR: incorrect pixel offset variables detected in maps, please remove them."
st=1
fi;
if grep -P '\td[1-2] =' _maps/**/*.dmm; then
echo "ERROR: d1/d2 cable variables detected in maps, please remove them."
st=1