Minor fixes.

This commit is contained in:
LevelX2 2012-12-15 00:07:24 +01:00
parent bc42b1a9f3
commit 35ea67c37b
2 changed files with 3 additions and 3 deletions

View file

@ -56,7 +56,7 @@ public class ConditionalTriggeredAbility extends TriggeredAbilityImpl<Conditiona
@Override
public String getRule() {
if (text != null && text.isEmpty()) {
if (text == null || text.isEmpty()) {
return ability.getRule();
}
return text;

View file

@ -40,7 +40,7 @@ import mage.players.Player;
/**
*
* @author LevelX
* @author LevelX2
*/
public class SkipNextPlayerUntapStepEffect extends OneShotEffect<SkipNextPlayerUntapStepEffect> {
@ -82,7 +82,7 @@ public class SkipNextPlayerUntapStepEffect extends OneShotEffect<SkipNextPlayerU
} else {
sb.append("target");
}
sb.append("player skips his or her next untap step");
sb.append(" player skips his or her next untap step");
return sb.toString();
}
}