Skip to content

Commit

Permalink
Mare Serenitatis road space fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
kberg committed Jan 14, 2021
1 parent 7114766 commit cf0e89c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cards/moon/MareSerenitatisMine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class MareSerenitatisMine implements IProjectCard {
const moon = MoonExpansion.moonData(player.game).moon;
const spaces = moon.getAdjacentSpaces(moon.getSpace(MoonSpaces.MARE_SERENITATIS));
const availableRoadSpaces = spaces.filter((space) => {
space.player === undefined && space.spaceType === SpaceType.LAND;
return space.player === undefined && space.spaceType === SpaceType.LAND;
});
player.game.defer(new PlaceMoonRoadTile(player, 'Select a space next to Mare Serintatis to play a road', availableRoadSpaces));
return undefined;
Expand Down

0 comments on commit cf0e89c

Please sign in to comment.