예제 #1
0
 public void Notify(Object world, int x, int y, int z) {
   if (world instanceof CraftWorld) {
     WorldServer server = (WorldServer) ((CraftWorld) world).getHandle();
     server.notify(x, y, z);
   } else {
     InternalAccessor.Instance.PrintError();
   }
 }