Have BukkitWorld.simulateBlockMine use Bukkit's dropNaturally

This commit is contained in:
zml2008
2012-02-11 15:46:29 -08:00
parent 9f1cc0674d
commit 0b548b2bac
2 changed files with 7 additions and 1 deletions

View File

@ -762,4 +762,9 @@ public class BukkitWorld extends LocalWorld {
return true;
}
@Override
public void simulateBlockMine(Vector pt) {
world.getBlockAt(pt.getBlockX(), pt.getBlockY(), pt.getBlockZ()).breakNaturally();
}
}