Skip to content

Commit 4540be0

Browse files
authored
Separate to GTBeesMatrix (#320)
1 parent 455e0f7 commit 4540be0

36 files changed

+2
-2231
lines changed

dependencies.gradle

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -96,27 +96,6 @@ dependencies {
9696
}
9797
}
9898

99-
// Debug Forestry
100-
compileOnly rfg.deobf("curse.maven:forestry-59751:2684780") // Forestry 5.8.2.387
101-
compileOnly rfg.deobf("curse.maven:binnies-mods-patched-899182:5492997") // Binnie's Mods Patched 2.5.1.212
102-
if (project.debug_all.toBoolean() || project.debug_ffm.toBoolean()) {
103-
runtimeOnlyNonPublishable rfg.deobf("curse.maven:forestry-59751:2684780") // Forestry 5.8.2.387
104-
runtimeOnlyNonPublishable rfg.deobf("curse.maven:beebetteratbees-244516:2627215") // BeeBetterAtBees 2.0.3
105-
runtimeOnlyNonPublishable rfg.deobf("curse.maven:jei-bees-248370:2490058") // JEIBees 0.9.0.5
106-
107-
// Debug Gendustry
108-
if (project.debug_all.toBoolean() || project.debug_gendustry.toBoolean()) {
109-
runtimeOnlyNonPublishable rfg.deobf("curse.maven:bdlib-70496:2518031") // BdLib 1.14.3.12
110-
runtimeOnlyNonPublishable rfg.deobf("curse.maven:gendustry-70492:2516215") // Gendustry 1.6.5.8
111-
runtimeOnlyNonPublishable rfg.deobf("curse.maven:gendustry-jei-addon-301364:2609434") // Gendustry JEI Addon 1.0.2
112-
}
113-
114-
// Debug Binnies
115-
if (project.debug_all.toBoolean() || project.debug_binnies.toBoolean()) {
116-
runtimeOnlyNonPublishable rfg.deobf("curse.maven:binnies-mods-patched-899182:5492997") // Binnie's Mods Patched 2.5.1.212
117-
}
118-
}
119-
12099
// Debug EnderIO
121100
compileOnly "info.loenwind.autoconfig:AutoConfig:1.12.2-1.0.2" // AutoConfig 1.0.2
122101
compileOnly "info.loenwind.autosave:AutoSave:1.12.2-1.0.11" // AutoSave 1.0.11
@@ -153,7 +132,7 @@ dependencies {
153132

154133
// Debug Avaritia
155134
if (project.debug_all.toBoolean() || project.debug_avaritia.toBoolean()) {
156-
runtimeOnlyNonPublishable rfg.deobf("curse.maven:avaritia-1-1x-unofficial-1165010:6029951") // Avaritia 1.1x UEL
135+
runtimeOnlyNonPublishable rfg.deobf("curse.maven:avaritia-1-1x-unofficial-1165010:6092956") // Avaritia UEL 3.3.0.41
157136
}
158137

159138
// Debug Chisel

gradle.properties

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,6 @@ debug_nae2 = false
3434
debug_extracpus = false
3535
debug_thaumcraft = false
3636
debug_thaumenergy = false
37-
debug_ffm = false
38-
debug_gendustry = false
39-
debug_binnies = false
4037
debug_eio = false
4138
debug_deda = false
4239
debug_avaritia = false

src/main/java/com/github/gtexpert/core/GTExpertMod.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,7 @@
4646
"after:" + Mods.Names.ENDER_CONDUITS + ";" + "after:" + Mods.Names.ENDER_AE2_CONDUITS + ";" +
4747
"after:" + Mods.Names.DRACONIC_EVOLUTION + ";" + "after:" + Mods.Names.DRACONIC_ADDITIONS + ";" +
4848
"after:" + Mods.Names.CHISEL + ";" + "after:" + Mods.Names.AVARITIA + ";" +
49-
"after:" + Mods.Names.THAUMCRAFT + ";" + "after:" + Mods.Names.THAUMIC_ENERGISTICS + ";" +
50-
"after:" + Mods.Names.FORESTRY + ";" + "after:" + Mods.Names.GENDUSTRY + ";" +
51-
"after:" + Mods.Names.GENETICS + ";" + "after:" + Mods.Names.BOTANY + ";" +
52-
"after:" + Mods.Names.EXTRA_BEES + ";" + "after:" + Mods.Names.EXTRA_TREES + ";")
49+
"after:" + Mods.Names.THAUMCRAFT + ";" + "after:" + Mods.Names.THAUMIC_ENERGISTICS + ";")
5350
@Mod.EventBusSubscriber(modid = GTEValues.MODID)
5451
public class GTExpertMod {
5552

src/main/java/com/github/gtexpert/core/api/unification/material/GTEMaterialFlags.java

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
import gregtech.api.unification.material.properties.*;
99
import gregtech.api.unification.ore.OrePrefix;
1010

11-
import com.github.gtexpert.core.api.util.Mods;
12-
1311
public class GTEMaterialFlags {
1412

1513
public static void init() {
@@ -65,22 +63,5 @@ public static void init() {
6563
// Iridium
6664
Materials.Iridium.setProperty(PropertyKey.ORE, new OreProperty());
6765
Materials.Iridium.getProperty(PropertyKey.ORE).setOreByProducts(Materials.Platinum, Materials.Osmium);
68-
69-
if (Mods.Forestry.isModLoaded()) {
70-
// Copper
71-
Materials.Copper.addFlags(GENERATE_GEAR);
72-
73-
// Tin
74-
Materials.Tin.addFlags(GENERATE_GEAR);
75-
76-
// Iron
77-
Materials.Iron.addFlags(GENERATE_FINE_WIRE, GENERATE_FOIL);
78-
79-
// Bronze
80-
Materials.Bronze.addFlags(GENERATE_FINE_WIRE);
81-
82-
// Rose Gold
83-
Materials.RoseGold.addFlags(GENERATE_FOIL);
84-
}
8566
}
8667
}

src/main/java/com/github/gtexpert/core/api/util/Mods.java

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public enum Mods {
3131
Avaritia(Names.AVARITIA),
3232
Avaritiaaddons(Names.AVARITIAADDONS),
3333
Baubles(Names.BAUBLES),
34-
Botany(Names.BOTANY),
3534
Chisel(Names.CHISEL),
3635
CTM(Names.CONNECTED_TEXTURES_MOD),
3736
CraftTweaker(Names.CRAFT_TWEAKER),
@@ -43,34 +42,8 @@ public enum Mods {
4342
EnderIOMachines(Names.ENDER_MACHINES),
4443
EnderIOConduits(Names.ENDER_CONDUITS),
4544
EnderIOAE2Conduits(Names.ENDER_AE2_CONDUITS),
46-
ExtraBees(Names.EXTRA_BEES),
4745
ExtraCPUs(Names.EXTRA_CPUS),
48-
ExtraTrees(Names.EXTRA_TREES),
49-
Forestry(Names.FORESTRY),
50-
ForestryApiculture(Names.FORESTRY, forestryModule(Names.FORESTRY_APICULTURE)),
51-
ForestryArboriculture(Names.FORESTRY, forestryModule(Names.FORESTRY_ARBORICULTURE)),
52-
ForestryCharcoal(Names.FORESTRY, forestryModule(Names.FORESTRY_CHARCOAL)),
53-
ForestryCore(Names.FORESTRY, forestryModule(Names.FORESTRY_CORE)),
54-
ForestryEnergy(Names.FORESTRY, forestryModule(Names.FORESTRY_ENERGY)),
55-
ForestryFactory(Names.FORESTRY, forestryModule(Names.FORESTRY_FACTORY)),
56-
ForestryWorktable(Names.FORESTRY, forestryModule(Names.FORESTRY_WORKTABLE)),
57-
ForestryFarming(Names.FORESTRY, forestryModule(Names.FORESTRY_FARMING)),
58-
ForestryClimatology(Names.FORESTRY, forestryModule(Names.FORESTRY_CLIMATOLOGY)),
59-
ForestryGreenhouse(Names.FORESTRY, forestryModule(Names.FORESTRY_GREENHOUSE)),
60-
ForestryFluids(Names.FORESTRY, forestryModule(Names.FORESTRY_FLUIDS)),
61-
ForestryFood(Names.FORESTRY, forestryModule(Names.FORESTRY_FOOD)),
62-
ForestryLepidopterology(Names.FORESTRY, forestryModule(Names.FORESTRY_LEPIDOPTEROLOGY)),
63-
ForestryMail(Names.FORESTRY, forestryModule(Names.FORESTRY_MAIL)),
64-
ForestryCrate(Names.FORESTRY, forestryModule(Names.FORESTRY_CRATE)),
65-
ForestryBackpacks(Names.FORESTRY, forestryModule(Names.FORESTRY_BACKPACKS)),
66-
ForestryDatabase(Names.FORESTRY, forestryModule(Names.FORESTRY_DATABASE)),
67-
ForestrySorting(Names.FORESTRY, forestryModule(Names.FORESTRY_SORTING)),
68-
ForestryBook(Names.FORESTRY, forestryModule(Names.FORESTRY_BOOK)),
69-
ForestryCultivation(Names.FORESTRY, forestryModule(Names.FORESTRY_CULTIVATION)),
70-
ForestryResearch(Names.FORESTRY, forestryModule(Names.FORESTRY_RESEARCH)),
7146
GalacticraftCore(Names.GALACTICRAFT_CORE),
72-
Genetics(Names.GENETICS),
73-
Gendustry(Names.GENDUSTRY),
7447
GregicalityMultiblocks(Names.GREGICALITY_MULTIBLOCKS),
7548
GregTech(Names.GREGTECH),
7649
GregTechFoodOption(Names.GREGTECH_FOOD_OPTION),
@@ -82,7 +55,6 @@ public enum Mods {
8255
InventoryTweaks(Names.INVENTORY_TWEAKS),
8356
JourneyMap(Names.JOURNEY_MAP),
8457
JustEnoughItems(Names.JUST_ENOUGH_ITEMS),
85-
MagicBees(Names.MAGIC_BEES),
8658
ModularUI(Names.MODULRAUI),
8759
MixinBooter(Names.MIXINBOOTER),
8860
NeevesAE2(Names.NEEVES_AE2),
@@ -143,28 +115,6 @@ public static class Names {
143115
public static final String EXTRA_BEES = "extrabees";
144116
public static final String EXTRA_CPUS = "extracpus";
145117
public static final String EXTRA_TREES = "extratrees";
146-
public static final String FORESTRY = "forestry";
147-
public static final String FORESTRY_APICULTURE = "apiculture";
148-
public static final String FORESTRY_ARBORICULTURE = "arboriculture";
149-
public static final String FORESTRY_CHARCOAL = "charcoal";
150-
public static final String FORESTRY_CORE = "core";
151-
public static final String FORESTRY_ENERGY = "energy";
152-
public static final String FORESTRY_FACTORY = "factory";
153-
public static final String FORESTRY_WORKTABLE = "worktable";
154-
public static final String FORESTRY_FARMING = "farming";
155-
public static final String FORESTRY_CLIMATOLOGY = "climatology";
156-
public static final String FORESTRY_GREENHOUSE = "greenhouse";
157-
public static final String FORESTRY_FLUIDS = "fluids";
158-
public static final String FORESTRY_FOOD = "food";
159-
public static final String FORESTRY_LEPIDOPTEROLOGY = "lepidopterology";
160-
public static final String FORESTRY_MAIL = "mail";
161-
public static final String FORESTRY_CRATE = "crates";
162-
public static final String FORESTRY_BACKPACKS = "backpacks";
163-
public static final String FORESTRY_DATABASE = "database";
164-
public static final String FORESTRY_SORTING = "sorting";
165-
public static final String FORESTRY_BOOK = "book";
166-
public static final String FORESTRY_CULTIVATION = "cultivation";
167-
public static final String FORESTRY_RESEARCH = "research";
168118
public static final String GALACTICRAFT_CORE = "galacticraftcore";
169119
public static final String GENETICS = "genetics";
170120
public static final String GENDUSTRY = "gendustry";
@@ -178,7 +128,6 @@ public static class Names {
178128
public static final String INVENTORY_TWEAKS = "inventorytweaks";
179129
public static final String JOURNEY_MAP = "journeymap";
180130
public static final String JUST_ENOUGH_ITEMS = "jei";
181-
public static final String MAGIC_BEES = "magicbees";
182131
public static final String MODULRAUI = "modularui";
183132
public static final String MIXINBOOTER = "mixinbooter";
184133
public static final String NEEVES_AE2 = "nae2";
@@ -303,13 +252,4 @@ private static Function<Mods, Boolean> versionExcludes(String versionPart) {
303252
return !container.getVersion().contains(versionPart);
304253
};
305254
}
306-
307-
/** Test if a specific Forestry module is enabled. */
308-
private static Function<Mods, Boolean> forestryModule(String moduleID) {
309-
if (Forestry.isModLoaded()) {
310-
return mod -> forestry.modules.ModuleHelper.isEnabled(moduleID);
311-
} else {
312-
return $ -> false;
313-
}
314-
}
315255
}

src/main/java/com/github/gtexpert/core/integration/binnies/BinniesModule.java

Lines changed: 0 additions & 30 deletions
This file was deleted.

src/main/java/com/github/gtexpert/core/integration/binnies/botany/BotanyModule.java

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/main/java/com/github/gtexpert/core/integration/binnies/botany/recipes/BotanyItemsRecipe.java

Lines changed: 0 additions & 41 deletions
This file was deleted.

src/main/java/com/github/gtexpert/core/integration/binnies/extrabees/ExtraBeesModule.java

Lines changed: 0 additions & 29 deletions
This file was deleted.

src/main/java/com/github/gtexpert/core/integration/binnies/extrabees/recipes/ExtraBeesItemsRecipe.java

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)