diff --git a/src/com/taiter/ce/Enchantments/Bow/Volley.java b/src/com/taiter/ce/Enchantments/Bow/Volley.java index dacc0f7..39a3990 100644 --- a/src/com/taiter/ce/Enchantments/Bow/Volley.java +++ b/src/com/taiter/ce/Enchantments/Bow/Volley.java @@ -75,7 +75,8 @@ private void volley(EntityShootBowEvent e, ItemStack item, int lvl) { arrow.setShooter(p); // Need to make sure arrow has same speed as original arrow. arrow.setVelocity(newDir.normalize().multiply(velocity.length())); - arrow.setMetadata("ce.Volley", new FixedMetadataValue(getPlugin(), null)); //Control metadata to prevent players from duplicating arrows + if(i > 0) + arrow.setMetadata("ce.Volley", new FixedMetadataValue(getPlugin(), null)); //Control metadata to prevent players from duplicating arrows } }