Skip to content

Commit 9bcce4f

Browse files
committed
fix
1 parent d74f32e commit 9bcce4f

2 files changed

Lines changed: 8 additions & 11 deletions

File tree

dependencies.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ dependencies {
7474
}
7575

7676
// Debug Binnies
77-
compileOnly rfg.deobf("curse.maven:binnies-mods-patched-899182:5492997") // Binnie's Mods Patched 2.5.1.212
77+
compileOnly rfg.deobf("curse.maven:binnies-mods-patched-899182:7731146") // Binnie's Mods Patched 2.5.1.213
7878
if (project.debug_all.toBoolean() || project.debug_binnies.toBoolean()) {
79-
runtimeOnly rfg.deobf("curse.maven:binnies-mods-patched-899182:5492997") // Binnie's Mods Patched 2.5.1.212
79+
runtimeOnly rfg.deobf("curse.maven:binnies-mods-patched-899182:7731146") // Binnie's Mods Patched 2.5.1.213
8080
}
8181

8282
// Debug EnderIO

src/main/java/com/github/gtexpert/gtbm/integration/gendustry/metatileentities/GendustryMetaTileEntities.java

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
import static gregtech.common.metatileentities.MetaTileEntities.registerMetaTileEntities;
66

77
import com.github.gtexpert.gtbm.client.GTBMTextures;
8-
import com.github.gtexpert.gtbm.common.GTBMConfigHolder;
98
import com.github.gtexpert.gtbm.integration.gendustry.GendustryRecipeMaps;
109

1110
public class GendustryMetaTileEntities {
@@ -16,13 +15,11 @@ public static void init() {
1615
// INDUSTRIAL_APIARY 20000~20012
1716
// TODO: IDの変更
1817

19-
if (GTBMConfigHolder.featureFlag) {
20-
registerMetaTileEntities(INDUSTRIAL_APIARY, 20000, "industrial_apiary",
21-
(tier, voltageName) -> new MetaTileEntityIndustrialApiary(
22-
gtbm(String.format("%s.%s", "industrial_apiary", voltageName)),
23-
GendustryRecipeMaps.INDUSTRIAL_APIARY_RECIPES,
24-
GTBMTextures.INDUSTRIAL_APIARY_OVERLAY,
25-
tier, false, null));
26-
}
18+
registerMetaTileEntities(INDUSTRIAL_APIARY, 20000, "industrial_apiary",
19+
(tier, voltageName) -> new MetaTileEntityIndustrialApiary(
20+
gtbm(String.format("%s.%s", "industrial_apiary", voltageName)),
21+
GendustryRecipeMaps.INDUSTRIAL_APIARY_RECIPES,
22+
GTBMTextures.INDUSTRIAL_APIARY_OVERLAY,
23+
tier, false, null));
2724
}
2825
}

0 commit comments

Comments
 (0)