Changed Block to CraftBlock. Changed callHook to getServer

This commit is contained in:
durron597 2010-12-31 22:59:30 -05:00
parent 4af385af1f
commit 02c469a93d
2 changed files with 6 additions and 5 deletions

View File

@ -3,6 +3,7 @@ package net.minecraft.server;
import java.util.Random;
import org.bukkit.BlockFace;
import org.bukkit.craftbukkit.CraftBlock;
import org.bukkit.event.Event.Type;
import org.bukkit.event.block.BlockFromToEvent;
@ -83,13 +84,13 @@ public class BlockFlowing extends BlockFluids
}
// Craftbukkit start
org.bukkit.Block source = ((WorldServer) world).getWorld().getBlockAt(i1, j1, k1);
CraftBlock source = (CraftBlock) ((WorldServer) world).getWorld().getBlockAt(i1, j1, k1);
if(l(world, i1, j1 - 1, k1))
{
// Craftbucket send "down" to the server
BlockFromToEvent blockFlow = new BlockFromToEvent(Type.BLOCK_FLOW, source, BlockFace.Down);
((WorldServer) world).callHook(blockFlow);
((WorldServer) world).getServer().getPluginManager().callEvent(blockFlow);
if (!blockFlow.isCancelled()) {
if(l1 >= 8)
@ -113,7 +114,7 @@ public class BlockFlowing extends BlockFluids
int index = 0;
if (aflag[index]) {
BlockFromToEvent event = new BlockFromToEvent(Type.BLOCK_FLOW, source, currentFace);
((WorldServer) world).callHook(event);
((WorldServer) world).getServer().getPluginManager().callEvent(event);
if (!event.isCancelled())
f(world, i1 + currentFace.getModX(), j1, k1 + currentFace.getModZ(), k2);
}

View File

@ -48,8 +48,8 @@ public class WorldServer extends World {
return world;
}
public void callHook(Event event) {
server.getPluginManager().callEvent(event);
public CraftServer getServer() {
return server;
}
// CraftBukkit stop