mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[DMU] Implemented Tori D'Avenant, Fury Rider
This commit is contained in:
parent
c42098272b
commit
7f439e23ab
3 changed files with 77 additions and 2 deletions
|
|
@ -130,8 +130,9 @@ public class BoostControlledEffect extends ContinuousEffectImpl {
|
|||
|
||||
private void setText() {
|
||||
StringBuilder sb = new StringBuilder();
|
||||
boolean each = filter.getMessage().toLowerCase(Locale.ENGLISH).startsWith("each");
|
||||
if (excludeSource && !each) {
|
||||
String message = filter.getMessage().toLowerCase(Locale.ENGLISH);
|
||||
boolean each = message.startsWith("each");
|
||||
if (excludeSource && !each && !message.startsWith("all")) {
|
||||
sb.append("other ");
|
||||
}
|
||||
sb.append(filter.getMessage()).append(" you control ");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue