MineTweaker additions

Harvest Moon gets an add custom crop type that's itemstack sensitive for
crops that share an item for seeds., it's not perfect but it works
pretty well.
Also gets a MT method to interface with this new harvest type
MT functions to add/remove focus items for falling tower as well as
define the meteor size and distribution.
This commit is contained in:
hilburn 2015-01-28 18:21:03 +00:00
parent f62c1a9a0e
commit afcb284479
4 changed files with 342 additions and 0 deletions
src/main/java/WayofTime/alchemicalWizardry/common/tweaker

View file

@ -13,5 +13,7 @@ public class MineTweakerIntegration
MineTweakerAPI.registerClass(Binding.class);
MineTweakerAPI.registerClass(BloodAltar.class);
MineTweakerAPI.registerClass(BloodOrb.class);
MineTweakerAPI.registerClass(FallingTower.class);
MineTweakerAPI.registerClass(HarvestMoon.class);
}
}