geforkt von Mirrors/Paper
Fixed new type reporting in BlockFade event for snow and ice. Thanks DiddiZ!
Dieser Commit ist enthalten in:
Ursprung
831d97c8de
Commit
28b3c9b0d7
@ -29,7 +29,7 @@ public class BlockIce extends BlockBreakable {
|
||||
if (world.a(EnumSkyBlock.BLOCK, i, j, k) > 11 - Block.q[this.id]) {
|
||||
// CraftBukkit start
|
||||
org.bukkit.block.BlockState blockState = world.getWorld().getBlockAt(i, j, k).getState();
|
||||
blockState.setTypeId(this.id);
|
||||
blockState.setTypeId(Block.STATIONARY_WATER.id);
|
||||
|
||||
BlockFadeEvent event = new BlockFadeEvent(blockState.getBlock(), blockState);
|
||||
world.getServer().getPluginManager().callEvent(event);
|
||||
|
@ -79,7 +79,7 @@ public class BlockSnow extends Block {
|
||||
if (world.a(EnumSkyBlock.BLOCK, i, j, k) > 11) {
|
||||
// CraftBukkit start
|
||||
org.bukkit.block.BlockState blockState = world.getWorld().getBlockAt(i, j, k).getState();
|
||||
blockState.setTypeId(this.id);
|
||||
blockState.setTypeId(0);
|
||||
|
||||
BlockFadeEvent event = new BlockFadeEvent(blockState.getBlock(), blockState);
|
||||
world.getServer().getPluginManager().callEvent(event);
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren