File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
src/main/java/com/circulation/random_complement Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,10 @@ public static class ae2 {
8888 @ Config .Comment ({"Use the new Patten Terminal Gui" })
8989 @ Config .Name ("newPattenGui" )
9090 public boolean newPattenGui = true ;
91+
92+ @ Config .Comment ({"Enable miss craft feature" })
93+ @ Config .Name ("enableMissCraft" )
94+ public boolean enableMissCraft = true ;
9195 }
9296
9397 public static class IC2 {
Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ public class rcLateMixinLoader implements ILateMixinLoader {
2929
3030 if (modLoaded ("appliedenergistics2" )) {
3131 addMixinCFG ("mixins.random_complement.ae2.json" );
32- addMixinCFG ("mixins.random_complement.ae2.miss_craft.json" );
32+ addMixinCFG ("mixins.random_complement.ae2.miss_craft.json" ,
33+ () -> RCConfig .AE2 .enableMissCraft );
3334 addMixinCFG ("mixins.random_complement.ae2.new_patten_gui.json" ,
3435 () -> RCConfig .AE2 .newPattenGui );
3536 addMixinCFG ("mixins.random_complement.ae2fc.new_patten_gui.json" ,
You can’t perform that action at this time.
0 commit comments