mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2025-04-03 10:16:23 +02:00

Put all the logic handling adding/removing/contains there and encapsulate our List Additionally, should prevent a ConcurrentModificationException by locking, but I'm not 100% on the contiains not throing such an exception.
17 lines
447 B
Java
17 lines
447 B
Java
package com.gmail.nossr50.config;
|
|
|
|
import java.util.HashMap;
|
|
import org.bukkit.entity.Entity;
|
|
import org.bukkit.entity.Player;
|
|
|
|
import com.gmail.nossr50.mcMMO;
|
|
|
|
public class Misc {
|
|
public HashMap<Entity, Integer> arrowTracker = new HashMap<Entity, Integer>();
|
|
public HashMap<Integer, Player> tntTracker = new HashMap<Integer, Player>();
|
|
mcMMO plugin;
|
|
|
|
public Misc(mcMMO mcMMO) {
|
|
this.plugin = mcMMO;
|
|
}
|
|
} |