Add a getter for the LE bucket to the API

This commit is contained in:
Nicholas Ignoffo 2016-06-28 15:18:35 -07:00
parent 7872e94430
commit 22c1f0db55
3 changed files with 15 additions and 2 deletions

View file

@ -45,7 +45,7 @@ public class CraftingHandler
if (event.getOutput().getItem() == ForgeModContainer.getInstance().universalBucket && event.getAltarRecipe().getSyphon() == 1000)
{
NBTTagCompound bucketTags = UniversalBucket.getFilledBucket(ForgeModContainer.getInstance().universalBucket, BloodMagicAPI.getLifeEssence()).getTagCompound();
NBTTagCompound bucketTags = BloodMagicAPI.getLifeEssenceBucket().getTagCompound();
event.getOutput().setTagCompound(bucketTags);
}
}