Skip to content

Commit

Permalink
fix wct display drops
Browse files Browse the repository at this point in the history
  • Loading branch information
GlodBlock committed Jul 24, 2022
1 parent 736a4b2 commit 3ebf64f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ dependencies {
compile('com.github.GTNewHorizons:Applied-Energistics-2-Unofficial:rv3-beta-75-GTNH:dev')
compile('curse.maven:cofh-core-69162:2388751')
compile('com.github.GTNewHorizons:ExtraCells2:2.5.9:dev') {transitive = false}
compile("com.github.GTNewHorizons:WirelessCraftingTerminal:1.8.8.5:dev") {transitive = false}

compileOnly("com.github.GTNewHorizons:ForestryMC:4.4.4:dev")
compileOnly("com.github.GTNewHorizons:EnderIO:2.3.1.27:dev")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ public byte[] transform(String name, String transformedName, byte[] code) {
break;
case "appeng.client.gui.implementations.GuiCraftingCPU":
case "appeng.client.gui.implementations.GuiCraftConfirm":
case "net.p455w0rd.wirelesscraftingterminal.client.gui.GuiCraftConfirm":
tform = GuiCraftingTransformer.INSTANCE;
break;
default:
Expand Down
3 changes: 3 additions & 0 deletions src/main/java/com/glodblock/github/util/ModAndClassUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public final class ModAndClassUtil {
public static boolean FTR = false;
public static boolean OC = false;
public static boolean ThE = false;
public static boolean WCT = false;

public static boolean isDoubleButton;
public static boolean isSaveText;
Expand Down Expand Up @@ -109,6 +110,8 @@ public static void init() {
OC = true;
if (Loader.isModLoaded("thaumicenergistics"))
ThE = true;
if (Loader.isModLoaded("ae2wct"))
WCT = true;
}

}

0 comments on commit 3ebf64f

Please sign in to comment.