mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-25 22:56:45 +01:00
Fixed Arrow Retrieval dropping only one arrow
This commit is contained in:
parent
3e91bc8c1e
commit
6dc522a044
@ -144,12 +144,10 @@ public class EntityListener implements Listener {
|
||||
@EventHandler (priority = EventPriority.MONITOR)
|
||||
public void onEntityDeath(EntityDeathEvent event) {
|
||||
LivingEntity entity = event.getEntity();
|
||||
|
||||
entity.setFireTicks(0);
|
||||
|
||||
/* Remove bleed track */
|
||||
BleedTimer.remove(entity);
|
||||
|
||||
Archery.arrowRetrievalCheck(entity, plugin);
|
||||
Archery.arrowRetrievalCheck(entity);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -32,7 +32,6 @@ import org.bukkit.plugin.PluginManager;
|
||||
import org.bukkit.scheduler.BukkitScheduler;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
||||
import org.bukkit.entity.Entity;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
public class mcMMO extends JavaPlugin {
|
||||
@ -43,7 +42,6 @@ public class mcMMO extends JavaPlugin {
|
||||
private final HardcoreListener hardcoreListener = new HardcoreListener();
|
||||
|
||||
public HashMap<String, String> aliasMap = new HashMap<String, String>(); //Alias - Command
|
||||
public HashMap<Entity, Integer> arrowTracker = new HashMap<Entity, Integer>();
|
||||
public HashMap<Integer, Player> tntTracker = new HashMap<Integer, Player>();
|
||||
|
||||
public static File versionFile;
|
||||
|
@ -1,5 +1,9 @@
|
||||
package com.gmail.nossr50.skills.combat;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Iterator;
|
||||
import java.util.Map;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Random;
|
||||
|
||||
import org.bukkit.Location;
|
||||
@ -18,6 +22,7 @@ import com.gmail.nossr50.util.Users;
|
||||
|
||||
public class Archery {
|
||||
|
||||
public static Map<Entity, Integer> arrowTracker = new HashMap<Entity, Integer>();
|
||||
private static Random random = new Random();
|
||||
|
||||
/**
|
||||
@ -31,12 +36,15 @@ public class Archery {
|
||||
final int MAX_BONUS_LEVEL = 1000;
|
||||
int skillLevel = PPa.getSkillLevel(SkillType.ARCHERY);
|
||||
|
||||
if (!plugin.arrowTracker.containsKey(entity)) {
|
||||
plugin.arrowTracker.put(entity, 0);
|
||||
if (skillLevel > MAX_BONUS_LEVEL || (random.nextInt(1000) <= skillLevel)) {
|
||||
for (Entry<Entity, Integer> entry : arrowTracker.entrySet()) {
|
||||
if (entry.getKey() == entity) {
|
||||
entry.setValue(entry.getValue() + 1);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (skillLevel > MAX_BONUS_LEVEL || (random.nextInt(1000) <= skillLevel)) {
|
||||
plugin.arrowTracker.put(entity, 1);
|
||||
arrowTracker.put(entity, 1);
|
||||
}
|
||||
}
|
||||
|
||||
@ -72,13 +80,16 @@ public class Archery {
|
||||
* Check for arrow retrieval.
|
||||
*
|
||||
* @param entity The entity hit by the arrows
|
||||
* @param plugin mcMMO plugin instance
|
||||
*/
|
||||
public static void arrowRetrievalCheck(Entity entity, mcMMO plugin) {
|
||||
if (plugin.arrowTracker.containsKey(entity)) {
|
||||
Misc.mcDropItems(entity.getLocation(), new ItemStack(Material.ARROW), plugin.arrowTracker.get(entity));
|
||||
}
|
||||
public static void arrowRetrievalCheck(Entity entity) {
|
||||
for (Iterator<Map.Entry<Entity, Integer>> it = arrowTracker.entrySet().iterator() ; it.hasNext() ; ) {
|
||||
Entry<Entity, Integer> entry = it.next();
|
||||
|
||||
plugin.arrowTracker.remove(entity);
|
||||
if (entry.getKey() == entity) {
|
||||
Misc.mcDropItem(entity.getLocation(), new ItemStack(Material.ARROW, entry.getValue()));
|
||||
it.remove();
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user