Skip to content

Commit 3970651

Browse files
committed
fix fabric not remapping
1 parent 04a956f commit 3970651

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
}
2424

2525
group = "dev.dediamondpro"
26-
version = "1.3.0"
26+
version = "1.3.1"
2727

2828
dependencies {
2929
implementation(libs.commonmark)

minecraft/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,14 @@ dependencies {
9292
}
9393
}
9494

95+
if (mcPlatform.isFabric) {
96+
tasks.jar {
97+
manifest {
98+
attributes("Fabric-Loom-Remap" to "true")
99+
}
100+
}
101+
}
102+
95103
tasks.processResources {
96104
if (!buildTestMod) {
97105
exclude("META-INF/mods.toml", "pack.mcmeta")

0 commit comments

Comments
 (0)