Skip to content

Commit 79f9957

Browse files
committed
fixed
1 parent 0ccfe81 commit 79f9957

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

build.gradle

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,14 @@ classes.dependsOn(moveResources)
113113

114114
jar {
115115
manifest.attributes(
116+
"FMLCorePlugin": "net.aspw.viaforgeplus.injection.forge.MixinLoader",
117+
"FMLCorePluginContainsFMLMod": true,
118+
"ForceLoadAsMod": true,
116119
"MixinConfigs": "viaforgeplus.forge.mixins.json",
120+
"ModSide": "CLIENT",
117121
"TweakClass": "org.spongepowered.asm.launch.MixinTweaker",
118122
"TweakOrder": "0",
119-
"FMLCorePluginContainsFMLMod": "net.aspw.viaforgeplus.injection.forge.MixinLoader",
120-
"FMLAT": "viaforgeplus_at.cfg"
123+
"FMLAT": "viaforgeplus_at.cfg",
121124
)
122125

123126
enabled = false

src/main/resources/viaforgeplus.forge.mixins.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"package": "net.aspw.viaforgeplus.injection.forge.mixins",
44
"refmap": "viaforgeplus.mixins.refmap.json",
55
"compatibilityLevel": "JAVA_8",
6-
"minVersion": "0.7.11",
7-
"client": [
6+
"mixins": [
87
"accessors.MinecraftForgeClientAccessor",
98
"block.MixinBlockLadder",
109
"block.MixinBlockLilyPad",
@@ -22,6 +21,5 @@
2221
"network.MixinNetworkManager$5",
2322
"network.MixinServerData",
2423
"packets.MixinC00Handshake"
25-
],
26-
"verbose": true
24+
]
2725
}

0 commit comments

Comments
 (0)