18 lines
285 B
Java
18 lines
285 B
Java
package net.minecraft.block;
|
|
|
|
import net.minecraft.init.Items;
|
|
import net.minecraft.item.Item;
|
|
|
|
public class BlockCarrot extends BlockCrops
|
|
{
|
|
protected Item getSeed()
|
|
{
|
|
return Items.carrot;
|
|
}
|
|
|
|
protected Item getCrop()
|
|
{
|
|
return Items.carrot;
|
|
}
|
|
}
|