forked from External/mage
Cleanup: source deals damage to {this}; mill cards (#10603)
* New common class for "Whenever a source deals damage to {this}, " which resolves #9340
* Merge `PutLibraryIntoGraveTargetEffect` with functionally identical `MillCardsTargetEffect`
* Text fix on `RevealDragonFromHandCost` noticed in #10593
* Text fix following up on #10594
This commit is contained in:
parent
73104f6705
commit
6c9079012c
101 changed files with 297 additions and 590 deletions
|
|
@ -89,7 +89,7 @@ public class SacrificeEffect extends OneShotEffect {
|
|||
if (preText != null) {
|
||||
sb.append(preText);
|
||||
}
|
||||
if (preText != null && (preText.endsWith("player") || preText.endsWith("opponent"))) {
|
||||
if (preText != null && (preText.endsWith("player") || preText.endsWith("opponent") || preText.endsWith("controller"))) {
|
||||
sb.append(" sacrifices ");
|
||||
} else {
|
||||
if (preText == null || preText.isEmpty()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue