import code
This commit is contained in:
17
client/src/main/java/net/minecraft/block/BlockCarrot.java
Normal file
17
client/src/main/java/net/minecraft/block/BlockCarrot.java
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user