Some minor changes.

This commit is contained in:
LevelX2 2016-03-06 10:25:11 +01:00
parent 0c242bce5f
commit 619856c8f5
3 changed files with 6 additions and 6 deletions

View file

@ -11,7 +11,7 @@ You can download this from: http://java.com/
Installing and running XMage Installing and running XMage
You will need to download both the client and the server applications. These can be You will need to download both the client and the server applications. These can be
obtained from HTTP://XMage.info. obtained from HTTP://XMage.de.
Extact the client and the server to separate folders. Extact the client and the server to separate folders.
To play a game you can either connect to a server or start your own server. To To play a game you can either connect to a server or start your own server. To

View file

@ -2,5 +2,5 @@ HotKeys: Alt+E - Enlarge card image
Wheel zoom in/out - Enlarge card image Wheel zoom in/out - Enlarge card image
F4 - end current turn, response to stack F4 - end current turn, response to stack
F9 - skip all opponents' turns, no response to stack F9 - skip all opponents' turns, no response to stack
Welcome! You are playing Mage version 1.4.3 Welcome! You are playing Mage version 1.4.9
Contact us on www.slightlymagic.net Contact us on www.slightlymagic.net

View file

@ -82,6 +82,6 @@ public class ConditionalActivatedAbility extends ActivatedAbilityImpl {
if (ruleText != null && !ruleText.isEmpty()) { if (ruleText != null && !ruleText.isEmpty()) {
return ruleText; return ruleText;
} }
return new StringBuilder(super.getRule()).append(" Activate this ability only ").append(condition.toString()).append(".").toString(); return super.getRule() + " Activate this ability only " + condition.toString();
} }
} }