mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-25 17:41:56 +00:00
Adds TG's mapmerge2, a new TGM-compatible merger that handles things like dictionary expansion much better than the old tool, as well as supporting a git merge hook for map files. This PR does not remove the old merger as this one is more annoying to setup.
13 lines
290 B
Batchfile
13 lines
290 B
Batchfile
@echo off
|
|
cd ../../maps/runtime
|
|
|
|
for /R %%f in (*.dmm) do copy "%%f" "%%f.backup"
|
|
|
|
cls
|
|
echo All dmm files in the maps/runtime directory have been backed up.
|
|
echo Now you can make your changes...
|
|
echo ---
|
|
echo Remember to run mapmerge.bat just before you commit your changes!
|
|
echo ---
|
|
pause
|