mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00: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…
Reference in a new issue