Skip to content

Commit 33d11db

Browse files
committed
允许在配置文件中关闭新样板终端GUI样式
1 parent 2ff0e64 commit 33d11db

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/main/java/com/circulation/random_complement/RCConfig.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,10 @@ public static class ae2 {
8383
@Config.Comment({"Make the grid always think it's full of energy"})
8484
@Config.Name("debugEnergy")
8585
public boolean debugEnergy = false;
86+
87+
@Config.Comment({"Use the new Patten Terminal Gui"})
88+
@Config.Name("newPattenGui")
89+
public boolean newPattenGui = true;
8690
}
8791

8892
public static class IC2 {

src/main/java/com/circulation/random_complement/mixin/rcLateMixinLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class rcLateMixinLoader implements ILateMixinLoader {
2929

3030
if (modLoaded("appliedenergistics2")) {
3131
addMixinCFG("mixins.random_complement.ae2.json");
32-
addMixinCFG("mixins.random_complement.ae2.new_patten_gui.json");
32+
addMixinCFG("mixins.random_complement.ae2.new_patten_gui.json", () -> RCConfig.AE2.newPattenGui);
3333
addModdedMixinCFG("mixins.random_complement.ae2.jei.json", "jei");
3434
addModdedMixinCFG("mixins.random_complement.ae2e.json", "ae2exttable");
3535
addModdedMixinCFG("mixins.random_complement.nae2.json", "nae2");

0 commit comments

Comments
 (0)