From 3e0e5c73e5f295789dac897b8860c5166b48865b Mon Sep 17 00:00:00 2001 From: Kyle Guerrero Date: Sat, 17 Jan 2026 01:50:57 -0600 Subject: [PATCH 1/5] docs: documentation to override default install location --- README.md | 12 ++++++++++++ build.gradle.kts | 3 ++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d576b0022..66cfab394 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,15 @@ A template for Hytale java plugins. Created by Up, and slightly modified by Kaupenjoe. + +# Override default game install location + +If you have installed Hytale in a custom location then by default the decompiled Server jar will not show up in IntelliJ External Libraries, also the `decompileServer` Gradle task will fail. + +To fix this you can specify the your install location using `hytale` function in `build.gradle.kts` using `gameDir` and set the value to be where you have installed Hytale. + +```kotlin +hytale { + gameDir = "/path/to/your/installed/Hytale" +} +``` \ No newline at end of file diff --git a/build.gradle.kts b/build.gradle.kts index 5f8e9ab09..879d1cc0f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -61,7 +61,8 @@ tasks.named("processResources") { } hytale { - + // gameDir - specify where Hytale is installed at + // example: gameDir = "/G/games/Hytale" } tasks.withType { From e815ea71e6478d176bd26f91e8b8838b23ad08f8 Mon Sep 17 00:00:00 2001 From: Kyle Guerrero Date: Sat, 17 Jan 2026 01:53:53 -0600 Subject: [PATCH 2/5] chore: README update --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 66cfab394..acef19834 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A template for Hytale java plugins. Created by Up, and slightly modified by Kaupenjoe. -# Override default game install location +# Override default Hytale install location If you have installed Hytale in a custom location then by default the decompiled Server jar will not show up in IntelliJ External Libraries, also the `decompileServer` Gradle task will fail. From 1307ca88e4772dc3beb73985ed2bd441da472f8c Mon Sep 17 00:00:00 2001 From: Kyle Guerrero Date: Sat, 17 Jan 2026 01:59:07 -0600 Subject: [PATCH 3/5] chore: README formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index acef19834..41295aabe 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A template for Hytale java plugins. Created by Up, and slightly modified by Kaupenjoe. -# Override default Hytale install location +## Override default Hytale install location If you have installed Hytale in a custom location then by default the decompiled Server jar will not show up in IntelliJ External Libraries, also the `decompileServer` Gradle task will fail. From 97ef3b912b543e236458f3530bf702375d99d44a Mon Sep 17 00:00:00 2001 From: Kyle Guerrero Date: Sat, 17 Jan 2026 02:12:39 -0600 Subject: [PATCH 4/5] chore: updated example for Windows --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 879d1cc0f..8d010c67c 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -62,7 +62,7 @@ tasks.named("processResources") { hytale { // gameDir - specify where Hytale is installed at - // example: gameDir = "/G/games/Hytale" + // example for windows: gameDir = "G:/games/Hytale" } tasks.withType { From 36515a45b995386f789a0d65d1fb1815b4ce76e6 Mon Sep 17 00:00:00 2001 From: Kyle Guerrero Date: Sat, 17 Jan 2026 02:15:11 -0600 Subject: [PATCH 5/5] chore: update README example --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 41295aabe..3230023e1 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,10 @@ If you have installed Hytale in a custom location then by default the decompiled To fix this you can specify the your install location using `hytale` function in `build.gradle.kts` using `gameDir` and set the value to be where you have installed Hytale. +Example for Windows ```kotlin hytale { - gameDir = "/path/to/your/installed/Hytale" + gameDir = "G:/games/Hytale" } -``` \ No newline at end of file +``` +Where `G:` is your drive where Hytale is installed \ No newline at end of file