mirror of
https://github.com/correl/mage.git
synced 2024-12-03 03:00:10 +00:00
fixed incomplete code
This commit is contained in:
parent
35be23537f
commit
1f6332d658
1 changed files with 7 additions and 7 deletions
|
@ -77,13 +77,13 @@ public class ReturnToHandFromGraveyardAllEffect extends OneShotEffect {
|
||||||
if (staticText != null && !staticText.isEmpty()) {
|
if (staticText != null && !staticText.isEmpty()) {
|
||||||
return staticText;
|
return staticText;
|
||||||
}
|
}
|
||||||
String rule="";
|
|
||||||
switch (targetController) {
|
switch (targetController) {
|
||||||
case EACH_PLAYER:
|
case OPPONENT:
|
||||||
rule+="each player";break;
|
return "each opponent returns each " + filter.getMessage() + " from their graveyard to their hand";
|
||||||
case OPPONENT:rule+="opponent";break;
|
|
||||||
case YOU:
|
case YOU:
|
||||||
|
return "return each " + filter.getMessage() + " from your graveyard to your hand";
|
||||||
|
default:
|
||||||
|
return "each player returns each " + filter.getMessage() + " from their graveyard to their hand";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue