Compare commits

..

3 Commits

Author SHA1 Message Date
e70b56787f Merge branch 'test' 2024-05-14 00:27:11 -07:00
6a8699c5b9 te 2024-05-14 00:22:46 -07:00
f248d83091 Update .gitignore 2024-05-13 23:44:50 -07:00
9 changed files with 26 additions and 4 deletions

1
.gitignore vendored
View File

@ -4,3 +4,4 @@
# Exclude exported Modrinth modpacks # Exclude exported Modrinth modpacks
*.mrpack *.mrpack
/newmods

View File

@ -996,6 +996,10 @@ hash = "e12419e43e3babc810af289403c5cd96bd7f09809b389acc6bb2f122b4b2a426"
file = "mods/architectury-9.2.14-forge.jar" file = "mods/architectury-9.2.14-forge.jar"
hash = "218b471d0b8a1f6cda14cfc1beb9eeb0df54304500acc6c5613d9b88ec65d9af" hash = "218b471d0b8a1f6cda14cfc1beb9eeb0df54304500acc6c5613d9b88ec65d9af"
[[files]]
file = "mods/automobility-0.4.2+1.20.1-forge.jar"
hash = "4ea3933ee2a9ffed5b739bbbf8a8c974737fd59cb6517c61c54b3eae9465ff54"
[[files]] [[files]]
file = "mods/balm-forge-1.20.1-7.2.2.jar" file = "mods/balm-forge-1.20.1-7.2.2.jar"
hash = "6f4029cafb0b7f1bc4810af9237c8973dde05bdce30852625d72a40feaa1b71e" hash = "6f4029cafb0b7f1bc4810af9237c8973dde05bdce30852625d72a40feaa1b71e"

Binary file not shown.

View File

@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
[index] [index]
file = "index.toml" file = "index.toml"
hash-format = "sha256" hash-format = "sha256"
hash = "99d37bd6987e2946a5ae5d5004b25cd61f203d6f8f30329b5eb5fcb16cbbc9e5" hash = "47ade5a5b68fec3a3b8d5c7391514b644c5f924cc9a9f3c0aa1d6a6d26e95c3e"
[versions] [versions]
forge = "47.2.17" forge = "47.2.17"

View File

@ -2,3 +2,4 @@
set masterfolder=%cd% set masterfolder=%cd%
start %cd%/client/refresh.bat start %cd%/client/refresh.bat
start %cd%/server/refresh.bat start %cd%/server/refresh.bat
exit

View File

@ -996,6 +996,10 @@ hash = "e12419e43e3babc810af289403c5cd96bd7f09809b389acc6bb2f122b4b2a426"
file = "mods/architectury-9.2.14-forge.jar" file = "mods/architectury-9.2.14-forge.jar"
hash = "218b471d0b8a1f6cda14cfc1beb9eeb0df54304500acc6c5613d9b88ec65d9af" hash = "218b471d0b8a1f6cda14cfc1beb9eeb0df54304500acc6c5613d9b88ec65d9af"
[[files]]
file = "mods/automobility-0.4.2+1.20.1-forge.jar"
hash = "4ea3933ee2a9ffed5b739bbbf8a8c974737fd59cb6517c61c54b3eae9465ff54"
[[files]] [[files]]
file = "mods/balm-forge-1.20.1-7.2.2.jar" file = "mods/balm-forge-1.20.1-7.2.2.jar"
hash = "6f4029cafb0b7f1bc4810af9237c8973dde05bdce30852625d72a40feaa1b71e" hash = "6f4029cafb0b7f1bc4810af9237c8973dde05bdce30852625d72a40feaa1b71e"

Binary file not shown.

View File

@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
[index] [index]
file = "index.toml" file = "index.toml"
hash-format = "sha256" hash-format = "sha256"
hash = "0f2895dd61cb66147c677790ac76f440b746e83fbb2bc4558c685821eda005cc" hash = "a0e178cf31d3da5daef717fd6dbfcea0aa1300acb933e78887130ee7f2d02420"
[versions] [versions]
forge = "47.2.17" forge = "47.2.17"

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