mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-04-04 11:32:22 +01:00
13 lines
289 B
Batchfile
13 lines
289 B
Batchfile
@echo off
|
|
cd ../../_maps/map_files/
|
|
|
|
for /R %%f in (*.dmm) do copy "%%f" "%%f.backup"
|
|
|
|
cls
|
|
echo All dmm files in map_files directories have been backed up
|
|
echo Now you can make your changes...
|
|
echo ---
|
|
echo Remember to run clean_map.bat just before you commit your changes!
|
|
echo ---
|
|
pause
|