You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
3.0 KiB
64 lines
3.0 KiB
--- ../src-base/minecraft/net/minecraft/block/BlockMycelium.java |
|
+++ ../src-work/minecraft/net/minecraft/block/BlockMycelium.java |
|
@@ -12,6 +12,12 @@ |
|
import net.minecraft.world.IBlockAccess; |
|
import net.minecraft.world.World; |
|
|
|
+// CraftBukkit start |
|
+import org.bukkit.block.BlockState; |
|
+import org.bukkit.event.block.BlockFadeEvent; |
|
+import org.bukkit.event.block.BlockSpreadEvent; |
|
+// CraftBukkit end |
|
+ |
|
public class BlockMycelium extends Block |
|
{ |
|
@SideOnly(Side.CLIENT) |
|
@@ -39,11 +45,25 @@ |
|
{ |
|
if (p_149674_1_.getBlockLightValue(p_149674_2_, p_149674_3_ + 1, p_149674_4_) < 4 && p_149674_1_.getBlockLightOpacity(p_149674_2_, p_149674_3_ + 1, p_149674_4_) > 2) |
|
{ |
|
- p_149674_1_.setBlock(p_149674_2_, p_149674_3_, p_149674_4_, Blocks.dirt); |
|
+ // CraftBukkit start |
|
+ org.bukkit.World bworld = p_149674_1_.getWorld(); |
|
+ BlockState blockState = bworld.getBlockAt(p_149674_2_, p_149674_3_, p_149674_4_).getState(); |
|
+ blockState.setTypeId(Block.getIdFromBlock(Blocks.dirt)); |
|
+ BlockFadeEvent event = new BlockFadeEvent(blockState.getBlock(), blockState); |
|
+ p_149674_1_.getServer().getPluginManager().callEvent(event); |
|
+ |
|
+ if (!event.isCancelled()) |
|
+ { |
|
+ blockState.update(true); |
|
+ } |
|
+ |
|
+ // CraftBukkit end |
|
} |
|
else if (p_149674_1_.getBlockLightValue(p_149674_2_, p_149674_3_ + 1, p_149674_4_) >= 9) |
|
{ |
|
- for (int l = 0; l < 4; ++l) |
|
+ int numGrowth = Math.min(4, Math.max(20, (int)(4 * 100F / p_149674_1_.growthOdds))); // Spigot |
|
+ |
|
+ for (int l = 0; l < numGrowth; ++l) // Spigot |
|
{ |
|
int i1 = p_149674_2_ + p_149674_5_.nextInt(3) - 1; |
|
int j1 = p_149674_3_ + p_149674_5_.nextInt(5) - 3; |
|
@@ -52,7 +72,19 @@ |
|
|
|
if (p_149674_1_.getBlock(i1, j1, k1) == Blocks.dirt && p_149674_1_.getBlockMetadata(i1, j1, k1) == 0 && p_149674_1_.getBlockLightValue(i1, j1 + 1, k1) >= 4 && p_149674_1_.getBlockLightOpacity(i1, j1 + 1, k1) <= 2) |
|
{ |
|
- p_149674_1_.setBlock(i1, j1, k1, this); |
|
+ // CraftBukkit start |
|
+ org.bukkit.World bworld = p_149674_1_.getWorld(); |
|
+ BlockState blockState = bworld.getBlockAt(i1, j1, k1).getState(); |
|
+ blockState.setTypeId(Block.getIdFromBlock(this)); |
|
+ BlockSpreadEvent event = new BlockSpreadEvent(blockState.getBlock(), bworld.getBlockAt(p_149674_2_, p_149674_3_, p_149674_4_), blockState); |
|
+ p_149674_1_.getServer().getPluginManager().callEvent(event); |
|
+ |
|
+ if (!event.isCancelled()) |
|
+ { |
|
+ blockState.update(true); |
|
+ } |
|
+ |
|
+ // CraftBukkit end |
|
} |
|
} |
|
}
|
|
|