You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
id("dev.deftu.gradle.tools") version(dgtVersion) // Applies several configurations to things such as the Java version, project name/version, etc.
10
10
id("dev.deftu.gradle.tools.resources") version(dgtVersion) // Applies resource processing so that we can replace tokens, such as our mod name/version, in our resources.
11
11
id("dev.deftu.gradle.tools.bloom") version(dgtVersion) // Applies the Bloom plugin, which allows us to replace tokens in our source files, such as being able to use `@MOD_VERSION` in our source files.
@@ -16,8 +16,8 @@ plugins {
16
16
17
17
toolkitLoomHelper {
18
18
useOneConfig {
19
-
version ="1.0.0-alpha.70"
20
-
loaderVersion ="1.1.0-alpha.44"
19
+
version ="1.0.0-alpha.106"
20
+
loaderVersion ="1.1.0-alpha.46"
21
21
22
22
usePolyMixin =true
23
23
polyMixinVersion ="0.8.4+build.2"
@@ -36,12 +36,5 @@ toolkitLoomHelper {
36
36
disableRunConfigs(GameSide.SERVER)
37
37
38
38
// Defines the name of the Mixin refmap, which is used to map the Mixin classes to the obfuscated Minecraft classes.
39
-
if (!mcData.isNeoForge) {
40
-
useMixinRefMap(modData.id)
41
-
}
42
-
43
-
if (mcData.isForge) {
44
-
// Configures the Mixin tweaker if we are building for Forge.
0 commit comments