- Fixed Lightmine Field.

This commit is contained in:
Sloth
2012-12-21 17:22:59 +00:00
parent ceddf57abb
commit ce6f20f0e0

View File

@@ -1021,9 +1021,11 @@ public class AbilityFactory {
if (o instanceof List<?>) {
@SuppressWarnings("unchecked")
final List<Player> pList = (List<Player>) o;
for (final Player p : pList) {
if (!players.contains(p)) {
players.add(p);
if (!pList.isEmpty() && pList.get(0) instanceof Player) {
for (final Player p : pList) {
if (!players.contains(p)) {
players.add(p);
}
}
}
}