Skip to content

Commit

Permalink
Whoops :3
Browse files Browse the repository at this point in the history
  • Loading branch information
enjarai committed Oct 7, 2024
1 parent 7058794 commit 5b0c038
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
- Added support for NeoForge 1.21(.1).
- Modified the way thrusting particles are displayed, solving some compatibility issues.
- Fixed a critical crash at startup.
- Fixed some other minor issues.
10 changes: 7 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,7 @@ loom {
if (loader == "forge") forge {
convertAccessWideners.set(true)
mixinConfigs(
"${mod.id}-client.mixins.json",
"${mod.id}-common.mixins.json",
"${mod.id}-compat.mixins.json"
"${mod.id}.mixins.json"
)
} else if (loader == "neoforge") neoForge {

Expand All @@ -122,6 +120,12 @@ loom {
options.put("mark-corresponding-synthetics", "1")
}
}

@Suppress("UnstableApiUsage")
mixin {
useLegacyMixinAp = false
// defaultRefmapName = "do_a_barrel_roll.refmap.json"
}
}

// Tasks
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ org.gradle.caching.debug=false
org.gradle.configureondemand=true

# Mod Properties
mod.version=3.7.0
mod.version=3.7.1
mod.group=nl.enjarai
mod.id=do_a_barrel_roll
mod.name=Do a Barrel Roll
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"minVersion": "0.8",
"package": "nl.enjarai.doabarrelroll.compat.cameraoverhaul.mixin",
"plugin": "nl.enjarai.doabarrelroll.compat.cameraoverhaul.CameraOverhaulPlugin",
"refmap": "${mod_id}.refmap.json",
"refmap": "do_a_barrel_roll.refmap.json",
"compatibilityLevel": "JAVA_17",
"client": [
"CameraSystemMixin"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"minVersion": "0.8",
"package": "nl.enjarai.doabarrelroll.compat.modmenu.mixin",
"plugin": "nl.enjarai.doabarrelroll.compat.modmenu.ModMenuPlugin",
"refmap": "${mod_id}.refmap.json",
"refmap": "do_a_barrel_roll.refmap.json",
"compatibilityLevel": "JAVA_17",
"client": [
"ModsScreenMixin"
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/do_a_barrel_roll.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"required": true,
"minVersion": "0.8",
"package": "nl.enjarai.doabarrelroll.mixin",
"refmap": "${mod_id}.refmap.json",
"refmap": "do_a_barrel_roll.refmap.json",
"compatibilityLevel": "JAVA_17",
"mixins": [
"CommandManagerMixin",
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"pack": {
"description": "${mod_name}",
"description": "Do a Barrel Roll",
"pack_format": 8
}
}

0 comments on commit 5b0c038

Please sign in to comment.