Fix effect manager

This commit is contained in:
Daniel Mills 2021-08-08 08:00:35 -04:00
parent df05ade4a7
commit 7f2d781241

View File

@ -51,12 +51,8 @@ public class IrisEngineEffects extends EngineAssignedComponent implements Engine
for (Player i : pr) {
Location l = i.getLocation();
boolean pcc = players.containsKey(i.getUniqueId());
if (getEngine().contains(l)) {
if (!pcc) {
players.put(i.getUniqueId(), new EnginePlayer(getEngine(), i));
}
} else if (pcc) {
players.remove(i.getUniqueId());
if (!pcc) {
players.put(i.getUniqueId(), new EnginePlayer(getEngine(), i));
}
}