aboutsummaryrefslogtreecommitdiff
path: root/mod/build.gradle
diff options
context:
space:
mode:
authorsyeyoung <cyoung06@naver.com>2022-12-26 13:47:08 +0900
committersyeyoung <cyoung06@naver.com>2022-12-26 13:47:08 +0900
commit83665fb67d1a96b6b4cd5ae0bdeb179b7ebc2136 (patch)
tree01ae780a5059e5209826e196a860b13cb8b8d6f9 /mod/build.gradle
parente4d75b0f5d953c7a62cf194308c4b304551705bd (diff)
downloadSkyblock-Dungeons-Guide-83665fb67d1a96b6b4cd5ae0bdeb179b7ebc2136.tar.gz
Skyblock-Dungeons-Guide-83665fb67d1a96b6b4cd5ae0bdeb179b7ebc2136.tar.bz2
Skyblock-Dungeons-Guide-83665fb67d1a96b6b4cd5ae0bdeb179b7ebc2136.zip
- Fix build.gradle (so it really generates launch config stuff)
Signed-off-by: syeyoung <cyoung06@naver.com>
Diffstat (limited to 'mod/build.gradle')
-rw-r--r--mod/build.gradle6
1 files changed, 6 insertions, 0 deletions
diff --git a/mod/build.gradle b/mod/build.gradle
index 33d028be..466c88b7 100644
--- a/mod/build.gradle
+++ b/mod/build.gradle
@@ -25,10 +25,16 @@ loom {
}
}
+ runConfigs {
+ named("client") {
+ ideConfigGenerated(true)
+ }
+ }
runs {
client {
runDir = 'runtime'
property('devauth.enabled','true')
+ property('dg.loader', 'devenv')
client()
}
}