mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
Changed Arrow Retrieval to drop arrows individually
This commit is contained in:
parent
6dc522a044
commit
7ad9b8ff3e
@ -19,6 +19,7 @@ Version 1.3.07
|
|||||||
+ Added config options for enabling/disabling specific double drops
|
+ Added config options for enabling/disabling specific double drops
|
||||||
+ Added automatic zip backup of flatfile database & config files
|
+ Added automatic zip backup of flatfile database & config files
|
||||||
+ Added config options to enable/disable specific skills for PVP & PVE
|
+ 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 /p and /a incompatibilities with bChatManager
|
||||||
= Fixed Iron Grip working reversely
|
= Fixed Iron Grip working reversely
|
||||||
= Fixed NPE when user clicked the HUD button with Spout
|
= Fixed NPE when user clicked the HUD button with Spout
|
||||||
|
@ -86,7 +86,7 @@ public class Archery {
|
|||||||
Entry<Entity, Integer> entry = it.next();
|
Entry<Entity, Integer> entry = it.next();
|
||||||
|
|
||||||
if (entry.getKey() == entity) {
|
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();
|
it.remove();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user