Changed a few things. Waiting for xcomp to help fix my work environment

This commit is contained in:
WayofTime 2014-11-15 16:17:51 -05:00
parent d23d90918d
commit 6ad0d3b702
10 changed files with 75 additions and 34 deletions

View file

@ -52,7 +52,7 @@ public class AltarRecipe
return false;
}
return tierCheck >= minTier && this.requiredItem.isItemEqual(comparedStack) && this.useTag ? this.areRequiredTagsEqual(comparedStack) : true;
return tierCheck >= minTier && this.requiredItem.isItemEqual(comparedStack) && (this.useTag ? this.areRequiredTagsEqual(comparedStack) : true);
}
public boolean areRequiredTagsEqual(ItemStack comparedStack)

View file

@ -0,0 +1,6 @@
package WayofTime.alchemicalWizardry.api.items;
public interface IAltarManipulator
{
}