mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
Player.java add resetNumDrawnThisDrawStep
This commit is contained in:
@@ -1406,9 +1406,12 @@ public class Player extends GameEntity implements Comparable<Player> {
|
|||||||
return CardCollection.combine(getCardsIn(Player.ALL_ZONES), getCardsIn(ZoneType.Stack), inboundTokens);
|
return CardCollection.combine(getCardsIn(Player.ALL_ZONES), getCardsIn(ZoneType.Stack), inboundTokens);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public final void resetNumDrawnThisDrawStep() {
|
||||||
|
numDrawnThisDrawStep = 0;
|
||||||
|
}
|
||||||
|
|
||||||
public final void resetNumDrawnThisTurn() {
|
public final void resetNumDrawnThisTurn() {
|
||||||
numDrawnThisTurn = 0;
|
numDrawnThisTurn = 0;
|
||||||
numDrawnThisDrawStep = 0;
|
|
||||||
view.updateNumDrawnThisTurn(this);
|
view.updateNumDrawnThisTurn(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user