forked from External/mage
fix River Song (#12727)
This commit is contained in:
parent
317f536dc9
commit
9fe5d6bd1b
6 changed files with 100 additions and 39 deletions
|
|
@ -9,8 +9,6 @@ import java.util.UUID;
|
|||
*/
|
||||
public class DrawCardEvent extends GameEvent {
|
||||
|
||||
private boolean fromBottom = false; // for replacement effects that draw from bottom of library instead
|
||||
|
||||
private int cardsDrawn = 0; // for replacement effects to keep track for "cards drawn this way"
|
||||
|
||||
public DrawCardEvent(UUID playerId, Ability source, GameEvent originalDrawEvent) {
|
||||
|
|
@ -27,14 +25,6 @@ public class DrawCardEvent extends GameEvent {
|
|||
}
|
||||
}
|
||||
|
||||
public void setFromBottom(boolean fromBottom) {
|
||||
this.fromBottom = fromBottom;
|
||||
}
|
||||
|
||||
public boolean isFromBottom() {
|
||||
return fromBottom;
|
||||
}
|
||||
|
||||
public void incrementCardsDrawn(int cardsDrawn) {
|
||||
this.cardsDrawn += cardsDrawn;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue