Fix NEI Plugin to work with new Recipe Setup.

Added Config option to not show colored cables in recipes.
Fortify Recipe System vs OreDicionary Late entries.
This commit is contained in:
AlgorithmX2
2014-07-25 19:31:12 -05:00
parent 31cb594f4d
commit 99f15f36b7
9 changed files with 132 additions and 47 deletions
+28
View File
@@ -4,7 +4,10 @@ import java.util.ArrayList;
import java.util.List;
import net.minecraft.item.ItemStack;
import net.minecraft.item.crafting.CraftingManager;
import net.minecraftforge.oredict.OreDictionary;
import appeng.core.AELog;
import appeng.recipes.game.IRecipeBakeable;
import cpw.mods.fml.common.eventhandler.SubscribeEvent;
public class OreDictionaryHandler
@@ -14,6 +17,8 @@ public class OreDictionaryHandler
private List<IOreListener> ol = new ArrayList<IOreListener>();
private boolean enableRebaking = false;
/**
* Just limit what items are sent to the final listeners, I got sick of strange items showing up...
*
@@ -33,6 +38,9 @@ public class OreDictionaryHandler
for (IOreListener v : ol)
v.oreRegistered( event.Name, event.Ore );
}
if ( enableRebaking )
bakeRecipes();
}
/**
@@ -58,4 +66,24 @@ public class OreDictionaryHandler
}
}
public void bakeRecipes()
{
enableRebaking = true;
for (Object o : CraftingManager.getInstance().getRecipeList())
{
if ( o instanceof IRecipeBakeable )
{
try
{
((IRecipeBakeable) o).bake();
}
catch (Throwable e)
{
AELog.error( e );
}
}
}
}
}