Skip to content
This repository was archived by the owner on May 24, 2024. It is now read-only.

Commit c0677fa

Browse files
committed
fix mixin
1 parent 5d31e7e commit c0677fa

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package ho.artisan.createreibugfix;
2+
3+
import me.fallenbreath.conditionalmixin.api.mixin.RestrictiveMixinConfigPlugin;
4+
5+
import java.util.List;
6+
import java.util.Set;
7+
8+
public class ModMixinConfiPlugin extends RestrictiveMixinConfigPlugin {
9+
@Override
10+
public String getRefMapperConfig() {
11+
return null;
12+
}
13+
14+
@Override
15+
public void acceptTargets(Set<String> myTargets, Set<String> otherTargets) {
16+
17+
}
18+
19+
@Override
20+
public List<String> getMixins() {
21+
return null;
22+
}
23+
}

src/main/resources/createreibugfix.mixins.json

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"minVersion": "0.8",
44
"package": "ho.artisan.createreibugfix.mixin",
55
"compatibilityLevel": "JAVA_17",
6+
"plugin": "ho.artisan.createreibugfix.ModMixinConfiPlugin",
67
"mixins": [
78
"SequencedAssemblyRecipeMixin"
89
],

0 commit comments

Comments
 (0)