mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-24 22:07:59 +01:00
12 lines
No EOL
301 B
Java
12 lines
No EOL
301 B
Java
package com.minelittlepony.unicopia.item;
|
|
|
|
import net.fabricmc.fabric.api.registry.FuelRegistry;
|
|
import net.minecraft.item.Item;
|
|
|
|
public class RottenAppleItem extends Item {
|
|
|
|
public RottenAppleItem(Settings settings) {
|
|
super(settings);
|
|
FuelRegistry.INSTANCE.add(this, 150);
|
|
}
|
|
} |