aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/material
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-12-24 13:39:47 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-12-24 13:39:47 +1000
commit76e388113660410ad78168d737578a2f73dc1065 (patch)
treee064b15ec4a8a3df2d375133d5ad688a23d8a9e3 /src/Java/gtPlusPlus/core/material
parent733e82642363da011097666f91048b4da3c051eb (diff)
downloadGT5-Unofficial-76e388113660410ad78168d737578a2f73dc1065.tar.gz
GT5-Unofficial-76e388113660410ad78168d737578a2f73dc1065.tar.bz2
GT5-Unofficial-76e388113660410ad78168d737578a2f73dc1065.zip
- Removed Frame box generation from MaterialGenerator.java for things which have the generateAll flag as false.
+ Added some logging to RecipeBuilder() to further help find broken recipes. $ Fixed a missing texture; textures/items/cell/SulfuricLithium.png had a double .png file extension.
Diffstat (limited to 'src/Java/gtPlusPlus/core/material')
-rw-r--r--src/Java/gtPlusPlus/core/material/MaterialGenerator.java21
1 files changed, 9 insertions, 12 deletions
diff --git a/src/Java/gtPlusPlus/core/material/MaterialGenerator.java b/src/Java/gtPlusPlus/core/material/MaterialGenerator.java
index 693a54e5b6..9e0506dabb 100644
--- a/src/Java/gtPlusPlus/core/material/MaterialGenerator.java
+++ b/src/Java/gtPlusPlus/core/material/MaterialGenerator.java
@@ -88,7 +88,6 @@ public class MaterialGenerator {
Item temp;
Block tempBlock;
tempBlock = new BlockBaseModular(unlocalizedName, materialName,BlockTypes.STANDARD, Colour);
- tempBlock = new BlockBaseModular(unlocalizedName, materialName,BlockTypes.FRAME, Colour);
temp = new BaseItemIngot("itemIngot"+unlocalizedName, materialName, Colour, sRadiation);
temp = new BaseItemDust("itemDust"+unlocalizedName, materialName, matInfo, Colour, "Dust", materialTier, sRadiation);
temp = new BaseItemDust("itemDustTiny"+unlocalizedName, materialName, matInfo, Colour, "Tiny", materialTier, sRadiation);
@@ -96,19 +95,17 @@ public class MaterialGenerator {
temp = new BaseItemNugget(matInfo);
temp = new BaseItemPlate(matInfo);
temp = new BaseItemPlateDouble(matInfo);
-
-
}
- //Add A jillion Recipes - old code
- RecipeGen_Plates.generateRecipes(matInfo);
- RecipeGen_Extruder.generateRecipes(matInfo);
- RecipeGen_ShapedCrafting.generateRecipes(matInfo);
- RecipeGen_DustGeneration.generateRecipes(matInfo);
- if (matInfo != ALLOY.ENERGYCRYSTAL && matInfo != ALLOY.BLOODSTEEL)
- RecipeGen_BlastSmelter.generateARecipe(matInfo);
-
- }
+ //Add A jillion Recipes - old code
+ RecipeGen_Plates.generateRecipes(matInfo);
+ RecipeGen_Extruder.generateRecipes(matInfo);
+ RecipeGen_ShapedCrafting.generateRecipes(matInfo);
+ RecipeGen_DustGeneration.generateRecipes(matInfo);
+ if (matInfo != ALLOY.ENERGYCRYSTAL && matInfo != ALLOY.BLOODSTEEL)
+ RecipeGen_BlastSmelter.generateARecipe(matInfo);
}
+
+}