Skip to content

Commit

Permalink
Reverting unintentional change.
Browse files Browse the repository at this point in the history
  • Loading branch information
stiangre committed Jul 22, 2024
1 parent fd26b99 commit f7cfe41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/net/sf/freecol/server/FreeColServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -823,9 +823,9 @@ public void saveMapEditorGame(File file, BufferedImage image)
this.setAIMain(null);
// Mask out spec while saving map.
Specification spec = getSpecification();
//getGame().setSpecification(null);
getGame().setSpecification(null);
saveGame(file, MAP_EDITOR_NAME, null, null, image);
//getGame().setSpecification(spec);
getGame().setSpecification(spec);
}

/**
Expand Down

0 comments on commit f7cfe41

Please sign in to comment.