mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 23:48:00 +01:00
15 lines
315 B
Java
15 lines
315 B
Java
|
package com.minelittlepony.unicopia.item;
|
||
|
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
|
||
|
public class ItemRottenApple extends ItemApple {
|
||
|
|
||
|
public ItemRottenApple(String domain, String name) {
|
||
|
super(domain, name);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public int getItemBurnTime(ItemStack stack) {
|
||
|
return 150;
|
||
|
}
|
||
|
}
|