mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-19 14:23:48 -07:00
Added for diff visibility:
- BlockBed - BlockDeadBush - BlockLongGrass - BlockVine
This commit is contained in:
committed by
EvilSeph
parent
784aa3b602
commit
8d62de7055
34
src/main/java/net/minecraft/server/BlockLongGrass.java
Normal file
34
src/main/java/net/minecraft/server/BlockLongGrass.java
Normal file
@@ -0,0 +1,34 @@
|
||||
package net.minecraft.server;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
public class BlockLongGrass extends BlockFlower {
|
||||
|
||||
protected BlockLongGrass(int i, int j) {
|
||||
super(i, j, Material.REPLACEABLE_PLANT);
|
||||
float f = 0.4F;
|
||||
|
||||
this.a(0.5F - f, 0.0F, 0.5F - f, 0.5F + f, 0.8F, 0.5F + f);
|
||||
}
|
||||
|
||||
public int a(int i, int j) {
|
||||
return j == 1 ? this.textureId : (j == 2 ? this.textureId + 16 + 1 : (j == 0 ? this.textureId + 16 : this.textureId));
|
||||
}
|
||||
|
||||
public int getDropType(int i, Random random, int j) {
|
||||
return random.nextInt(8) == 0 ? Item.SEEDS.id : -1;
|
||||
}
|
||||
|
||||
public int getDropCount(int i, Random random) {
|
||||
return 1 + random.nextInt(i * 2 + 1);
|
||||
}
|
||||
|
||||
public void a(World world, EntityHuman entityhuman, int i, int j, int k, int l) {
|
||||
if (!world.isStatic && entityhuman.T() != null && entityhuman.T().id == Item.SHEARS.id) {
|
||||
entityhuman.a(StatisticList.C[this.id], 1);
|
||||
this.a(world, i, j, k, new ItemStack(Block.LONG_GRASS, 1, l));
|
||||
} else {
|
||||
super.a(world, entityhuman, i, j, k, l);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user