Merge pull request #73 from Northmoc/sd

Some getStackDescription() tweaks
This commit is contained in:
Anthony Calosa
2022-04-17 11:05:46 +08:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

@@ -359,6 +359,8 @@ public class ChangeZoneEffect extends SpellAbilityEffect {
if (destination.equals(ZoneType.Hand)) {
if (ZoneType.Graveyard.equals(origin)) {
sb.append("Return").append(targetname).append(fromGraveyard).append(" to");
} else if (ZoneType.Battlefield.equals(origin)) {
sb.append("Return").append(targetname).append(" to");
} else {
sb.append("Put").append(targetname).append(" in");
}

View File

@@ -124,7 +124,7 @@ public class DamageDealEffect extends DamageBaseEffect {
break;
}
}
stringBuilder.append(statement);
stringBuilder.append(" ").append(statement);
}
return stringBuilder.toString();
}