mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Virtuss Maneuver - Fixed a bug that prevented it from working correctly.
This commit is contained in:
parent
8de230d3d8
commit
32b7abedf1
1 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
package mage.cards.v;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@ -67,7 +66,7 @@ class VirtussManeuverEffect extends OneShotEffect {
|
|||
|
||||
@Override
|
||||
public boolean apply(Game game, Ability source) {
|
||||
Player controller = game.getPlayer(source.getSourceId());
|
||||
Player controller = game.getPlayer(source.getControllerId());
|
||||
ChooseFriendsAndFoes choice = new ChooseFriendsAndFoes();
|
||||
if (!choice.chooseFriendOrFoe(controller, source, game)) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue