mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
*Fixed small error in AF_CounterMagic's parsing of the Destination parameter.
This commit is contained in:
@@ -253,7 +253,7 @@ public class AbilityFactory_CounterMagic {
|
|||||||
else if(destination.equals("Exile")) {
|
else if(destination.equals("Exile")) {
|
||||||
AllZone.GameAction.exile(tgtSA.getSourceCard());
|
AllZone.GameAction.exile(tgtSA.getSourceCard());
|
||||||
}
|
}
|
||||||
else if(destination.equals("Topdeck")) {
|
else if(destination.equals("TopDeck")) {
|
||||||
AllZone.GameAction.moveToTopOfLibrary(tgtSA.getSourceCard());
|
AllZone.GameAction.moveToTopOfLibrary(tgtSA.getSourceCard());
|
||||||
}
|
}
|
||||||
else if(destination.equals("Hand")) {
|
else if(destination.equals("Hand")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user