This commit is contained in:
NTCat 2024-05-14 00:32:55 -07:00
parent 5af62d766a
commit 3074375ee2
3 changed files with 14 additions and 1 deletions

0
newmods/placeholder.txt Normal file
View File

View File

@ -1,4 +1,5 @@
@Echo OFF
set masterfolder=%cd%
start %cd%/client/refresh.bat
start %cd%/server/refresh.bat
start %cd%/server/refresh.bat
exit

12
setnewmods.bat Normal file
View File

@ -0,0 +1,12 @@
@Echo OFF
echo setting root..
set masterfolder=%cd%
echo Copying to Client
xcopy /e /v /y "%cd%\newmods" "%cd%\client\mods"
echo Copying to Server
xcopy /e /v /y "%cd%\newmods" "%cd%\server\mods"
echo Deleting leftover mods
del "%cd%\newmods\*.*" /q
echo Starting refresh
start refresh.bat
exit