forked from External/mage
Remove BroodofCockroaches text test (in Verify), uncapitalize CreateDelayedTriggeredAbilityEffect ability rule text
This commit is contained in:
parent
f2272045ad
commit
17e0c82a07
3 changed files with 3 additions and 18 deletions
|
|
@ -67,7 +67,8 @@ public class CreateDelayedTriggeredAbilityEffect extends OneShotEffect {
|
|||
return staticText;
|
||||
}
|
||||
if (ability.getRuleVisible()) {
|
||||
return rulePrefix + ability.getRule();
|
||||
String tmp = ability.getRule();
|
||||
return rulePrefix + tmp.substring(0, 1).toLowerCase() + tmp.substring(1);
|
||||
} else {
|
||||
return "";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue