mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
- Fixed Lightmine Field.
This commit is contained in:
@@ -1021,9 +1021,11 @@ public class AbilityFactory {
|
|||||||
if (o instanceof List<?>) {
|
if (o instanceof List<?>) {
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
final List<Player> pList = (List<Player>) o;
|
final List<Player> pList = (List<Player>) o;
|
||||||
for (final Player p : pList) {
|
if (!pList.isEmpty() && pList.get(0) instanceof Player) {
|
||||||
if (!players.contains(p)) {
|
for (final Player p : pList) {
|
||||||
players.add(p);
|
if (!players.contains(p)) {
|
||||||
|
players.add(p);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user