[DMU] Implemented Tori D'Avenant, Fury Rider

This commit is contained in:
Daniel Bomar 2022-08-22 17:16:38 -05:00
parent c42098272b
commit 7f439e23ab
No known key found for this signature in database
GPG key ID: C86C8658F4023918
3 changed files with 77 additions and 2 deletions

View file

@ -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 ");