Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-17 21:40:08 +01:00
44 Zeilen
1.2 KiB
Java
44 Zeilen
1.2 KiB
Java
package net.minecraft.server;
|
|
|
|
import java.util.Random;
|
|
import org.bukkit.craftbukkit.event.CraftEventFactory;
|
|
|
|
public class BlockIce extends BlockBreakable {
|
|
|
|
public BlockIce(int i, int j) {
|
|
super(i, j, Material.ICE, false);
|
|
this.frictionFactor = 0.98F;
|
|
this.a(true);
|
|
}
|
|
|
|
public void a(World world, EntityHuman entityhuman, int i, int j, int k, int l) {
|
|
super.a(world, entityhuman, i, j, k, l);
|
|
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;
|
|
}
|
|
|
|
public void a(World world, int i, int j, int k, Random random) {
|
|
if (world.a(EnumSkyBlock.BLOCK, i, j, k) > 11 - Block.q[this.id]) {
|
|
// CraftBukkit start
|
|
if (CraftEventFactory.callBlockFadeEvent(world.getWorld().getBlockAt(i, j, k), Block.STATIONARY_WATER.id).isCancelled()) {
|
|
return;
|
|
}
|
|
// CraftBukkit end
|
|
|
|
this.g(world, i, j, k, world.getData(i, j, k));
|
|
world.setTypeId(i, j, k, Block.STATIONARY_WATER.id);
|
|
}
|
|
}
|
|
|
|
public int e() {
|
|
return 0;
|
|
}
|
|
}
|