Changed Arrow Retrieval to drop arrows individually

This commit is contained in:
bm01
2012-05-04 10:27:49 +02:00
parent 6dc522a044
commit 7ad9b8ff3e
2 changed files with 2 additions and 1 deletions

View File

@ -86,7 +86,7 @@ public class Archery {
Entry<Entity, Integer> entry = it.next();
if (entry.getKey() == entity) {
Misc.mcDropItem(entity.getLocation(), new ItemStack(Material.ARROW, entry.getValue()));
Misc.mcDropItems(entity.getLocation(), new ItemStack(Material.ARROW), entry.getValue());
it.remove();
return;
}