Skip to content

Commit

Permalink
adds balance patch (1.1.0)
Browse files Browse the repository at this point in the history
  • Loading branch information
delthas committed Dec 9, 2017
1 parent 1714e23 commit d837059
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>fr.delthas</groupId>
<artifactId>minesweeper</artifactId>
<version>1.0.0</version>
<version>1.1.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/fr/delthas/minesweeper/client/Minesweeper.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ public class Minesweeper {


// the size of the grid/field (assumed to be square)
private static final int GRID_SIZE = 11;
private static final int GRID_SIZE = 13;

// the count of mines to be put in the field
private static final int MINE_COUNT = (int) (0.05 * GRID_SIZE * GRID_SIZE);
private static final int MINE_COUNT = (int) (0.15 * GRID_SIZE * GRID_SIZE);

// the url of the server (for leaderboard purposes)
private static final String SERVER_URL = "http://delthas.fr:5784";
Expand Down

0 comments on commit d837059

Please sign in to comment.