21 lines
537 B
Java
21 lines
537 B
Java
package de.jottyfan.minecraft.composter;
|
|
|
|
import de.jottyfan.minecraft.item.QuicklyItems;
|
|
import net.fabricmc.fabric.api.registry.CompostableRegistry;
|
|
|
|
/**
|
|
*
|
|
* @author jotty
|
|
*
|
|
*/
|
|
public class QuicklyComposter {
|
|
|
|
public static final void registerComposterItems() {
|
|
CompostableRegistry.INSTANCE.add(QuicklyItems.COTTONSEED, 0.5f);
|
|
CompostableRegistry.INSTANCE.add(QuicklyItems.COTTON, 0.75f);
|
|
CompostableRegistry.INSTANCE.add(QuicklyItems.CANOLASEED, 0.5f);
|
|
CompostableRegistry.INSTANCE.add(QuicklyItems.CANOLA, 0.75f);
|
|
}
|
|
|
|
}
|