Skip to content

Commit

Permalink
feat: Update for Forge 1.21.4
Browse files Browse the repository at this point in the history
  • Loading branch information
BlayTheNinth committed Jan 13, 2025
1 parent c1d0416 commit fe2f1fc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
8 changes: 6 additions & 2 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ plugins {
}

mixin {
add(sourceSets.main, "${mod_id}.refmap.json")

config("${mod_id}.mixins.json")
config("${mod_id}.forge.mixins.json")
}
Expand Down Expand Up @@ -119,4 +117,10 @@ modrinth {
dependencies {
required.project "balm"
}
}

sourceSets.each {
def dir = layout.buildDirectory.dir("sourcesSets/$it.name")
it.output.resourcesDir = dir
it.java.destinationDirectory = dir
}
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
package net.blay09.mods.prettybeaches;

import net.blay09.mods.balm.api.Balm;
import net.blay09.mods.balm.api.EmptyLoadContext;
import net.blay09.mods.balm.forge.ForgeLoadContext;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.javafmlmod.FMLJavaModLoadingContext;

@Mod(PrettyBeaches.MOD_ID)
public class ForgePrettyBeaches {

public ForgePrettyBeaches() {
Balm.initialize(PrettyBeaches.MOD_ID, EmptyLoadContext.INSTANCE, PrettyBeaches::initialize);
public ForgePrettyBeaches(FMLJavaModLoadingContext context) {
final var loadContext = new ForgeLoadContext(context.getModEventBus());
Balm.initialize(PrettyBeaches.MOD_ID, loadContext, PrettyBeaches::initialize);
}

}
1 change: 0 additions & 1 deletion forge/src/main/resources/prettybeaches.forge.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"minVersion": "0.8",
"package": "net.blay09.mods.prettybeaches.forge.mixin",
"compatibilityLevel": "JAVA_17",
"refmap": "${mod_id}.refmap.json",
"mixins": [
],
"client": [
Expand Down

0 comments on commit fe2f1fc

Please sign in to comment.