mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-18 18:47:53 +01:00
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:
@@ -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" = (
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user