diff options
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/block/base/BasicBlock.java | 2 | ||||
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/block/base/BasicBlock.java b/src/Java/gtPlusPlus/core/block/base/BasicBlock.java index f2edf65740..34da346ff2 100644 --- a/src/Java/gtPlusPlus/core/block/base/BasicBlock.java +++ b/src/Java/gtPlusPlus/core/block/base/BasicBlock.java @@ -25,7 +25,7 @@ public class BasicBlock extends BlockContainer { super(material); this.setBlockName(Utils.sanitizeString(unlocalizedName)); - if (type != BlockTypes.ORE) { + if (type != BlockTypes.ORE && !unlocalizedName.toLowerCase().contains("ore")) { this.setBlockTextureName(CORE.MODID + ":" + unlocalizedName); } diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index 0cb36d4859..5f3969310b 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -286,12 +286,12 @@ public class RECIPES_Machines { //Buffer Core RecipeUtils.addShapedGregtechRecipe( CI.component_Plate[1], cableTier1, CI.component_Plate[1], - CI.circuitPrimitive, "plateStaballloy", CI.circuitPrimitive, + "circuitPrimitive", "plateStaballloy", "circuitPrimitive", CI.component_Plate[1], cableTier1, CI.component_Plate[1], RECIPE_BufferCore_ULV); RecipeUtils.addShapedGregtechRecipe( CI.component_Plate[2], cableTier2, CI.component_Plate[2], - CI.circuitTier1, IC2MFE, CI.circuitTier1, + CI.circuitTier1, CI.machineHull_HV, CI.circuitTier1, CI.component_Plate[2], cableTier2, CI.component_Plate[2], RECIPE_BufferCore_LV); RecipeUtils.addShapedGregtechRecipe( |