Skip to content

Commit

Permalink
Hard dep on ae2 (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zorbatron authored Sep 27, 2024
1 parent 5e7db35 commit 0416712
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/zorbatron/zbgt/ZBGTCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
acceptedMinecraftVersions = "[1.12.2]",
dependencies = GTInternalTags.DEP_VERSION_STRING +
"required-after:gcym@[1.2.11,);" +
"after:appliedenergistics2;")
"required-after:appliedenergistics2;")
public class ZBGTCore {

public static final String MODID = Tags.MODID;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import com.zorbatron.zbgt.common.metatileentities.storage.MetaTileEntityCreativeComputationProvider;

import gregtech.api.GTValues;
import gregtech.api.util.Mods;

public class ZBGTMetaTileEntities {

Expand Down Expand Up @@ -85,10 +84,9 @@ public static void init() {
1_048_576));
ZBGT_PARALLEL_HATCHES[6] = registerMetaTileEntity(18016, new MetaTileEntityLargeParallelHatch(
zbgtId("parallel_hatch.final"), GTValues.MAX, Integer.MAX_VALUE));
if (Mods.AppliedEnergistics2.isModLoaded()) {
YOTTANK_ME_HATCH = registerMetaTileEntity(18017,
new MetaTileEntityYOTTankMEHatch(zbgtId("yottank_me_hatch"), GTValues.IV));
}

YOTTANK_ME_HATCH = registerMetaTileEntity(18017,
new MetaTileEntityYOTTankMEHatch(zbgtId("yottank_me_hatch"), GTValues.IV));

// 18050-18099 (50) reserved for multiblocks
MEGA_EBF = registerMetaTileEntity(18050,
Expand Down
7 changes: 1 addition & 6 deletions src/main/java/com/zorbatron/zbgt/recipe/ZBGTRecipes.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
package com.zorbatron.zbgt.recipe;

import gregtech.api.util.Mods;

public class ZBGTRecipes {

public static void init() {
Expand All @@ -11,9 +9,6 @@ public static void init() {
CoALRecipes.init();
MiscRecipes.init();
CasingRecipes.init();

if (Mods.AppliedEnergistics2.isModLoaded()) {
AE2Recipes.init();
}
AE2Recipes.init();
}
}

0 comments on commit 0416712

Please sign in to comment.