Files
vgstation13/maptools/clean_map_git.sh
ComicIronic 5fdd792e16 Added Taxistation to the map merger, and made Taxistation changes.
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.
2014-10-28 17:57:51 +00:00

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