mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 02:30:08 -08:00
latest
This commit is contained in:
parent
e1190077a2
commit
5935a35ace
1 changed files with 4 additions and 3 deletions
|
|
@ -55,11 +55,12 @@ public class TwoPlayerGame extends GameImpl {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void playDrawStep() {
|
||||
public boolean playDrawStep(UUID activePlayerId) {
|
||||
//20091005 - 103.7a
|
||||
if (getTurnNum() != 1 || !state.getTurn().getActivePlayerId().equals(startingPlayerId)) {
|
||||
super.playDrawStep();
|
||||
if (getTurnNum() != 1 || !activePlayerId.equals(startingPlayerId)) {
|
||||
return super.playDrawStep(activePlayerId);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue