mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
Piping around the Chaplains office has been redone to not go under walls. Crematorium expanded into its own little room so that the bodies don't burn in the chap's office. Rwindows added to chapel and sec checkpoint. Windoors added to chapel and sec checkpoint. Tiles replaced in sec checkpoint. Cyborg analyzer added to robotics. Light added to chap's office, as well as wardrobe closet. Sec wardrobe added to sec spawn. Tables moved to make all lockers accessible. Warden spawn moved to sec lobby, and locker added appropriately.
21 lines
480 B
Bash
21 lines
480 B
Bash
#!/bin/bash
|
|
|
|
#MAPROOT='../../_maps/map_files/'
|
|
MAPROOT="../maps/"
|
|
MAPFILES=(
|
|
$MAPROOT"tgstation.dmm"
|
|
$MAPROOT"tgstation.2.1.0.0.1.dmm"
|
|
$MAPROOT"vgstation.dmm"
|
|
$MAPROOT"efficiency.dmm"
|
|
$MAPROOT"taxistation.dmm"
|
|
)
|
|
for MAPFILE in "${MAPFILES[@]}"
|
|
do
|
|
echo "Processing $MAPFILE..."
|
|
git show HEAD:$MAPFILE > tmp.dmm
|
|
java -jar MapPatcher.jar -clean tmp.dmm $MAPFILE $MAPFILE
|
|
#dos2unix -U '../../_maps/map_files/'$MAPFILE
|
|
rm tmp.dmm
|
|
echo "----------------------"
|
|
continue
|
|
done |