mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
* Lightning Greaves - Fixed that equiped creature did not get shroud ability.
This commit is contained in:
parent
2ba42bc852
commit
e2373a709b
2 changed files with 8 additions and 7 deletions
|
|
@ -44,7 +44,7 @@ import mage.game.permanent.Permanent;
|
|||
* @author North
|
||||
*/
|
||||
public class FilterPermanent extends FilterObject<Permanent> {
|
||||
protected List<ObjectPlayerPredicate<ObjectPlayer<Permanent>>> extraPredicates = new ArrayList<ObjectPlayerPredicate<ObjectPlayer<Permanent>>>();
|
||||
protected List<ObjectPlayerPredicate<ObjectPlayer<Permanent>>> extraPredicates = new ArrayList<>();
|
||||
|
||||
public FilterPermanent() {
|
||||
super("permanent");
|
||||
|
|
@ -52,7 +52,7 @@ public class FilterPermanent extends FilterObject<Permanent> {
|
|||
|
||||
public FilterPermanent(final FilterPermanent filter) {
|
||||
super(filter);
|
||||
this.extraPredicates = new ArrayList<ObjectPlayerPredicate<ObjectPlayer<Permanent>>>(filter.extraPredicates);
|
||||
this.extraPredicates = new ArrayList<>(filter.extraPredicates);
|
||||
}
|
||||
|
||||
public FilterPermanent(String name) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue