Skip to content

Commit b739dc9

Browse files
committed
GTWPの要素を削除
1 parent 2d19bef commit b739dc9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+16
-1340
lines changed

dependencies.gradle

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,16 @@ dependencies {
5858
devOnlyNonPublishable(rfg.deobf("curse.maven:ae2-extended-life-570458:5411078")) // AE2UEL 0.56.6
5959
}
6060

61+
// Debug GTWoodProcessing
62+
compileOnly rfg.deobf("curse.maven:gtwoodprocessing-1093753:5731776") // GTWoodProcessing 1.2.2
63+
if (project.debug_all.toBoolean() || project.debug_gtwp.toBoolean()) {
64+
runtimeOnlyNonPublishable rfg.deobf("curse.maven:gtwoodprocessing-1093753:5731776")
65+
}
66+
6167
// Debug ImplosionNoBomb
62-
compileOnly rfg.deobf("curse.maven:implosionnobomb-1094386:5680426") // ImplosionNoBomb 1.0.0
68+
compileOnly rfg.deobf("curse.maven:implosionnobomb-1094386:5731331") // ImplosionNoBomb 1.1.0
6369
if (project.debug_all.toBoolean() || project.debug_inb.toBoolean()) {
64-
runtimeOnlyNonPublishable rfg.deobf("curse.maven:implosionnobomb-1094386:5680426")
70+
runtimeOnlyNonPublishable rfg.deobf("curse.maven:implosionnobomb-1094386:5731331")
6571
}
6672

6773
// Debug AE Additions

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ modGroup = gtexpert
77

88
# Version of your mod.
99
# This field can be left empty if you want your mod's version to be determined by the latest git tag instead.
10-
modVersion = 2.3.2-beta
10+
modVersion = 2.3.2-beta
1111

1212
# Whether to use the old jar naming structure (modid-mcversion-version) instead of the new version (modid-version)
1313
includeMCVersionJar = true
@@ -27,6 +27,7 @@ useAE2uelExtended = false
2727

2828
# Debug mod compatibility
2929
debug_all = false
30+
debug_gtwp = false
3031
debug_inb = false
3132
debug_aea = false
3233
debug_nae2 = false

src/main/java/gtexpert/GTExpertMod.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@
3535
version = Tags.VERSION,
3636
updateJSON = "https://forge.curseupdate.com/851103/gtexpert",
3737
dependencies = GTInternalTags.DEP_VERSION_STRING + "required-after:" + Mods.Names.MIXINBOOTER + ";" +
38-
"required-after:" + Mods.Names.GREGICALITY_MULTIBLOCKS + ";" + "after:" + Mods.Names.IMPLOSION_NO_BOMB +
39-
";" +
38+
"required-after:" + Mods.Names.GREGICALITY_MULTIBLOCKS + ";" +
39+
"after:" + Mods.Names.GREGTECH_WOOD_PROCESSING + ";" + "after:" + Mods.Names.IMPLOSION_NO_BOMB + ";" +
4040
"after:" + Mods.Names.GREGTECH_FOOD_OPTION + ";" + "after:" + Mods.Names.APPLIED_ENERGISTICS2 + ";" +
4141
"after:" + Mods.Names.AE_ADDITIONS + ";" + "after:" + Mods.Names.AE2_FLUID_CRAFTING + ";" +
4242
"after:" + Mods.Names.NEEVES_AE2 + ";" + "after:" + Mods.Names.EXTRA_CPUS + ";" +

src/main/java/gtexpert/api/recipes/GTERecipeMaps.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,6 @@ public class GTERecipeMaps {
2424
.setProgressBar(GuiTextures.PROGRESS_BAR_SIFT, ProgressWidget.MoveType.VERTICAL_INVERTED)
2525
.setSound(SoundEvents.BLOCK_SAND_PLACE);
2626

27-
@ZenProperty
28-
public static final RecipeMap<SimpleRecipeBuilder> SAWMILL_RECIPES = new RecipeMap<>(
29-
"sawmill", 2, 2, 1, 0, new SimpleRecipeBuilder(), false)
30-
.setSlotOverlay(false, false, GuiTextures.SAWBLADE_OVERLAY)
31-
.setSlotOverlay(true, false, false, GuiTextures.CUTTER_OVERLAY)
32-
.setSlotOverlay(true, false, true, GuiTextures.DUST_OVERLAY)
33-
.setProgressBar(GuiTextures.PROGRESS_BAR_SLICE, ProgressWidget.MoveType.HORIZONTAL)
34-
.setSound(GTSoundEvents.CHAINSAW_TOOL);
35-
3627
@ZenProperty
3728
public static final RecipeMap<SimpleRecipeBuilder> VOID_ORE_MINER_RECIPES = new RecipeMap<>(
3829
"void_ore_miner", 1, 1, 2, 0, new SimpleRecipeBuilder(), false)

src/main/java/gtexpert/api/util/Mods.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ public enum Mods {
7575
GregTech(Names.GREGTECH),
7676
GregTechFoodOption(Names.GREGTECH_FOOD_OPTION),
7777
GregTechExpertCore(GTEValues.MODID),
78+
GregTechWoodProcessing(Names.GREGTECH_WOOD_PROCESSING),
7879
GroovyScript(Names.GROOVY_SCRIPT),
7980
HWYLA(Names.HWYLA),
8081
ImplosionNoBomb(Names.IMPLOSION_NO_BOMB),
@@ -170,6 +171,7 @@ public static class Names {
170171
public static final String GREGICALITY_MULTIBLOCKS = "gcym";
171172
public static final String GREGTECH = GTValues.MODID;
172173
public static final String GREGTECH_FOOD_OPTION = "gregtechfoodoption";
174+
public static final String GREGTECH_WOOD_PROCESSING = "gtwp";
173175
public static final String GROOVY_SCRIPT = "groovyscript";
174176
public static final String HWYLA = "hwyla";
175177
public static final String IMPLOSION_NO_BOMB = "inb";

src/main/java/gtexpert/client/GTETextures.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
public class GTETextures {
1212

1313
// Core
14-
public static SimpleOverlayRenderer SAWMILL_CASING;
15-
public static OrientedOverlayRenderer SAWMILL_OVERLAY = new OrientedOverlayRenderer("machines/sawmill");
1614
public static SimpleOverlayRenderer VOID_ORE_MINER_CASING;
1715

1816
// Ender IO
@@ -34,7 +32,6 @@ public class GTETextures {
3432

3533
public static void preInit() {
3634
// Core
37-
SAWMILL_CASING = new SimpleOverlayRenderer("casings/sawmill_casing");
3835
VOID_ORE_MINER_CASING = new SimpleOverlayRenderer("casings/void_ore_miner_casing");
3936

4037
// Draconic Evolution

src/main/java/gtexpert/common/GTEConfigHolder.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,6 @@ public static class ModpackFlag {
5757

5858
public static class GregtechOverride {
5959

60-
@Config.Comment({ "Making Planks even more difficult.",
61-
"CEu's hardWoodRecipes & nerfWoodCrafting to true to reflect.", "Default: false" })
62-
public boolean moreNerfPlankCrafting = false;
63-
64-
@Config.Comment({ "Making Sticks even more difficult.",
65-
"CEu's harderRods to true to reflect.", "Default: false" })
66-
public boolean moreNerfStickCrafting = false;
67-
6860
@Config.Comment({ "Change to a recipe using Assembly Line.",
6961
"CEu's enableHighTierSolars to true to reflect.", "Default: false" })
7062
public boolean hardSolarPanel = false;

src/main/java/gtexpert/common/blocks/BlockSawmillConveyor.java

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

src/main/java/gtexpert/common/blocks/GTEBlockMetalCasing.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public GTEBlockMetalCasing() {
2121
setResistance(10.0f);
2222
setSoundType(SoundType.METAL);
2323
setHarvestLevel(ToolClasses.WRENCH, 2);
24-
setDefaultState(getState(MetalCasingType.SAWMill));
24+
setDefaultState(getState(MetalCasingType.VOID_ORE_MINER));
2525
}
2626

2727
@Override
@@ -32,7 +32,6 @@ public boolean canCreatureSpawn(@NotNull IBlockState state, @NotNull IBlockAcces
3232

3333
public enum MetalCasingType implements IStringSerializable {
3434

35-
SAWMill("sawmill_casing"),
3635
VOID_ORE_MINER("void_ore_miner_casing"),
3736
DRACONIUM_CASING("draconium_casing"),
3837
AWAKENED_DRACONIUM_CASING("awakened_draconium_casing");

src/main/java/gtexpert/common/blocks/GTEMetaBlocks.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,21 +14,17 @@ public class GTEMetaBlocks {
1414

1515
public static GTEBlockWireCoil GTE_WIRE_COIL;
1616
public static GTEBlockMetalCasing GTE_METAL_CASING;
17-
public static BlockSawmillConveyor BLOCK_SAWMILL_CONVEYOR;
1817

1918
public static void init() {
2019
GTE_METAL_CASING = new GTEBlockMetalCasing();
2120
GTE_METAL_CASING.setRegistryName("gte_metal_casing");
22-
BLOCK_SAWMILL_CONVEYOR = new BlockSawmillConveyor();
23-
BLOCK_SAWMILL_CONVEYOR.setRegistryName("sawmill_conveyor");
2421
GTE_WIRE_COIL = new GTEBlockWireCoil();
2522
GTE_WIRE_COIL.setRegistryName("gte_wire_coil");
2623
}
2724

2825
@SideOnly(Side.CLIENT)
2926
public static void registerItemModels() {
3027
registerItemModel(GTE_METAL_CASING);
31-
registerItemModel(BLOCK_SAWMILL_CONVEYOR);
3228
GTE_WIRE_COIL.onModelRegister();
3329
}
3430

0 commit comments

Comments
 (0)