Correctly drop BlockBreakEvent experience. Fixes BUKKIT-4942

This was a missed diff from the update.
This commit is contained in:
feildmaster 2013-12-02 03:03:00 -06:00
parent 963cd5438a
commit 8c444f275a

View File

@ -314,7 +314,7 @@ public class PlayerInteractManager {
// CraftBukkit start - Drop event experience
if (flag && event != null) {
block.c(this.world, i, j, k, event.getExpToDrop());
block.dropExperience(this.world, i, j, k, event.getExpToDrop());
}
// CraftBukkit end