Compost Bin - jaquadro/GardenCollection GitHub Wiki

Compost bins are crafted with sticks and planks.
The materials list for the compost bin can be configured through a MineTweaker script. GardenStuff exposes the following API:
mods.gardenstuff.CompostBin.add(<item>, processTime);
Any item matching the given item will be processed by the compost bin in the number of ticks specified by processTime.
mods.gardenstuff.CompostBin.add("oreDictName", processTime);
Any item registered to the given ore dictionary name will be processed by the compost bin in the number of ticks specified by processTime.
mods.gardenstuff.CompostBin.clear();
All default items, ore dictionary keys, and class records will be cleared from the compost table. Only entries you add after this point will be valid compost material.
