diff --git a/Changelog.txt b/Changelog.txt index 961c86a38..14b2aed3f 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -19,6 +19,7 @@ Version 1.3.07 + Added config options for enabling/disabling specific double drops + Added automatic zip backup of flatfile database & config files + Added config options to enable/disable specific skills for PVP & PVE + = Fixed Arrow Retrieval dropping only one arrow = Fixed /p and /a incompatibilities with bChatManager = Fixed Iron Grip working reversely = Fixed NPE when user clicked the HUD button with Spout diff --git a/src/main/java/com/gmail/nossr50/skills/combat/Archery.java b/src/main/java/com/gmail/nossr50/skills/combat/Archery.java index b8a5bbdf1..e68319625 100644 --- a/src/main/java/com/gmail/nossr50/skills/combat/Archery.java +++ b/src/main/java/com/gmail/nossr50/skills/combat/Archery.java @@ -86,7 +86,7 @@ public class Archery { Entry 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; }