3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-20 13:30:05 +01:00
Paper/src/main/java/net/minecraft/server/BlockIce.java

66 Zeilen
1.9 KiB
Java

package net.minecraft.server;
import java.util.Random;
public class BlockIce extends BlockHalfTransparant {
public BlockIce(int i, int j) {
super(i, j, Material.ICE, false);
this.frictionFactor = 0.98F;
2012-07-29 09:33:13 +02:00
this.b(true);
this.a(CreativeModeTab.b);
}
2011-07-08 14:25:53 +02:00
public void a(World world, EntityHuman entityhuman, int i, int j, int k, int l) {
2012-07-29 09:33:13 +02:00
entityhuman.a(StatisticList.C[this.id], 1);
entityhuman.j(0.025F);
if (this.s_() && EnchantmentManager.hasSilkTouchEnchantment(entityhuman)) {
ItemStack itemstack = this.f_(l);
2012-07-29 09:33:13 +02:00
if (itemstack != null) {
this.a(world, i, j, k, itemstack);
}
} else {
if (world.worldProvider.e) {
2012-07-29 09:33:13 +02:00
world.setTypeId(i, j, k, 0);
return;
}
int i1 = EnchantmentManager.getBonusBlockLootEnchantmentLevel(entityhuman);
2012-07-29 09:33:13 +02:00
this.c(world, i, j, k, l, i1);
Material material = world.getMaterial(i, j - 1, k);
if (material.isSolid() || material.isLiquid()) {
world.setTypeId(i, j, k, Block.WATER.id);
}
}
}
public int a(Random random) {
return 0;
}
2012-07-29 09:33:13 +02:00
public void b(World world, int i, int j, int k, Random random) {
if (world.b(EnumSkyBlock.BLOCK, i, j, k) > 11 - Block.lightBlock[this.id]) {
// CraftBukkit start
if (org.bukkit.craftbukkit.event.CraftEventFactory.callBlockFadeEvent(world.getWorld().getBlockAt(i, j, k), Block.STATIONARY_WATER.id).isCancelled()) {
return;
}
// CraftBukkit end
if (world.worldProvider.e) {
2012-07-29 09:33:13 +02:00
world.setTypeId(i, j, k, 0);
return;
}
this.c(world, i, j, k, world.getData(i, j, k), 0);
world.setTypeId(i, j, k, Block.STATIONARY_WATER.id);
}
}
2011-07-08 14:25:53 +02:00
public int q_() {
2011-07-08 14:25:53 +02:00
return 0;
}
}