fix: update paths for Hytale server and assets in build configuration

Adjusted the paths in build.gradle.kts to reference the correct locations for HytaleServer.jar and Assets.zip. Updated README to reflect changes in the server's mods folder instead of plugins folder for clarity.
This commit is contained in:
Cody Adam
2026-01-14 10:28:58 +01:00
parent b7b84b47ba
commit 2e98ce8457
3 changed files with 21 additions and 11 deletions

View File

@@ -15,7 +15,7 @@ repositories {
dependencies {
// Hytale Server API (provided by server at runtime)
compileOnly(files("libs/hytale-server.jar"))
compileOnly(files("./libs/HytaleServer.jar"))
// Common dependencies (will be bundled in JAR)
implementation("com.google.code.gson:gson:2.10.1")
@@ -28,8 +28,8 @@ dependencies {
// Configure server testing
runHytale {
jarUrl = "./HytaleServer.jar"
assetsPath = "./Assets.zip"
jarUrl = "./libs/HytaleServer.jar"
assetsPath = "./libs/Assets.zip"
}
tasks {