add solderer, processors, silicon, quartz enriched iron

This commit is contained in:
Raoul Van den Berge
2015-12-23 14:12:23 +01:00
parent d0fbc2f540
commit 06fa4555cb
32 changed files with 785 additions and 58 deletions

View File

@@ -207,6 +207,16 @@ public class InventoryUtils
public static boolean compareStack(ItemStack first, ItemStack second, int flags)
{
if (first == null && second == null)
{
return true;
}
if ((first == null && second != null) || (first != null && second == null))
{
return false;
}
if ((flags & COMPARE_DAMAGE) == COMPARE_DAMAGE)
{
if (first.getItemDamage() != second.getItemDamage())