9 lines
240 B
Java
9 lines
240 B
Java
package net.Chipperfluff.chipi.item;
|
|
|
|
import net.minecraft.item.FoodComponent;
|
|
|
|
public class ModFoodComponents {
|
|
|
|
public static final FoodComponent NUT = new FoodComponent.Builder().hunger(4).saturationModifier(0.3f).snack().build();
|
|
}
|