mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
Merge fix
This commit is contained in:
parent
6356457afa
commit
8b664adce6
1 changed files with 2 additions and 2 deletions
|
@ -1075,7 +1075,7 @@ public abstract class GameImpl implements Game, Serializable {
|
|||
|
||||
// 20180408 - 901.5
|
||||
if (gameOptions.planeChase) {
|
||||
Plane plane = Plane.getRandomPlane();
|
||||
Plane plane = Plane.createRandomPlane();
|
||||
plane.setControllerId(startingPlayerId);
|
||||
addPlane(plane, null, startingPlayerId);
|
||||
state.setPlaneChase(this, gameOptions.planeChase);
|
||||
|
@ -2619,7 +2619,7 @@ public abstract class GameImpl implements Game, Serializable {
|
|||
for (Player aplayer : state.getPlayers().values()) {
|
||||
if (!aplayer.hasLeft() && !addedAgain) {
|
||||
addedAgain = true;
|
||||
Plane plane = Plane.getRandomPlane();
|
||||
Plane plane = Plane.createRandomPlane();
|
||||
plane.setControllerId(aplayer.getId());
|
||||
addPlane(plane, null, aplayer.getId());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue