Fixed blockcache being inaccurate

This commit is contained in:
Dinnerbone
2011-01-20 00:16:57 +00:00
parent 0284663aee
commit 46e1b54a74
25 changed files with 346 additions and 339 deletions

View File

@@ -1,14 +1,14 @@
package org.bukkit.craftbukkit.entity;
import net.minecraft.server.EntityMobs;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.entity.Monster;
public class CraftMonster extends CraftCreature implements Monster {
public CraftMonster(CraftServer server, EntityMobs entity) {
super(server, entity);
}
}
package org.bukkit.craftbukkit.entity;
import net.minecraft.server.EntityMobs;
import org.bukkit.craftbukkit.CraftServer;
import org.bukkit.entity.Monster;
public class CraftMonster extends CraftCreature implements Monster {
public CraftMonster(CraftServer server, EntityMobs entity) {
super(server, entity);
}
}