mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Migrated some card moving callers to non-deprecated method.
Since the function the were calling just calls into the non-deprecated method, this is a low risk change.
This commit is contained in:
parent
bd51cd5f77
commit
4b6bbacd8c
35 changed files with 46 additions and 41 deletions
|
|
@ -1864,8 +1864,8 @@ public class TestPlayer implements Player {
|
|||
|
||||
@Override
|
||||
@Deprecated
|
||||
public boolean moveCards(Set<Card> cards, Zone fromZone, Zone toZone, Ability source, Game game) {
|
||||
return computerPlayer.moveCards(cards, fromZone, toZone, source, game);
|
||||
public boolean moveCards(Set<Card> cards, Zone toZone, Ability source, Game game) {
|
||||
return computerPlayer.moveCards(cards, toZone, source, game);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
@ -2124,7 +2124,7 @@ public class TestPlayer implements Player {
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean moveCards(Set<Card> cards, Zone toZone, Ability source, Game game) {
|
||||
public boolean moveCards(Set<Card> cards, Zone fromZone, Zone toZone, Ability source, Game game) {
|
||||
return computerPlayer.moveCards(cards, toZone, source, game);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue