this should find it?

This commit is contained in:
Technus 2017-01-29 09:50:40 +01:00
parent f548a49026
commit fac3fa7301

View file

@ -73,7 +73,12 @@ public class GT_Achievements {
} }
GT_Log.out.println("achievement." + oreList.get(i).name() + ".desc=Height: " + (oreStats.get(i)[0]) + "-" + (oreStats.get(i)[1]) + ", Chance: " + (oreStats.get(i)[2]) + ", " + dimensions.toString()); GT_Log.out.println("achievement." + oreList.get(i).name() + ".desc=Height: " + (oreStats.get(i)[0]) + "-" + (oreStats.get(i)[1]) + ", Chance: " + (oreStats.get(i)[2]) + ", " + dimensions.toString());
} }
registerOreAchievement(oreList.get(i)); if(oreList.get(i)==null)
GT_Log.out.println("GT Achievement - Ore with NULL pointer material tries to register achievement.");
if(oreList.get(i).name()==null)
GT_Log.out.println("GT Achievement - Ore with NULL named material tries to register achievement.");
else
registerOreAchievement(oreList.get(i));
} }
for(GT_Recipe recipe: GT_Recipe.GT_Recipe_Map.sAssemblylineFakeRecipes.mRecipeList) for(GT_Recipe recipe: GT_Recipe.GT_Recipe_Map.sAssemblylineFakeRecipes.mRecipeList)