New Feature
Mud balls can now be fired from dispensers.
This commit is contained in:
commit
ba1c173093
1 changed files with 3 additions and 4 deletions
|
@ -153,12 +153,11 @@ public class BonemealUse
|
|||
|
||||
if (event.ID == BOPBlocks.originSapling.blockID)
|
||||
{
|
||||
event.setResult(Result.ALLOW);
|
||||
|
||||
if (!event.world.isRemote)
|
||||
{
|
||||
if ((double)event.world.rand.nextFloat() < 0.45D)
|
||||
{
|
||||
((BlockOriginSapling)BOPBlocks.originSapling).growTree(event.world, event.X, event.Y, event.Z, event.world.rand);
|
||||
}
|
||||
((BlockOriginSapling)BOPBlocks.originSapling).growTree(event.world, event.X, event.Y, event.Z, event.world.rand);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue