From f6b7ea95f29d15ba44188b59f5c831ce38d94beb Mon Sep 17 00:00:00 2001 From: drdev Date: Tue, 16 Dec 2014 06:01:10 +0000 Subject: [PATCH] Add a few more empty tiles --- .../src/main/java/forge/planarconquest/ConquestPlaneMap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-gui/src/main/java/forge/planarconquest/ConquestPlaneMap.java b/forge-gui/src/main/java/forge/planarconquest/ConquestPlaneMap.java index c16e2bdae5e..efb3f15354e 100644 --- a/forge-gui/src/main/java/forge/planarconquest/ConquestPlaneMap.java +++ b/forge-gui/src/main/java/forge/planarconquest/ConquestPlaneMap.java @@ -98,7 +98,7 @@ public class ConquestPlaneMap { addTile(startQ, startR); int max = gridSize - 1; - int minCount = Math.round(gridSize * gridSize * 0.8f); //ensure at least 80% of the grid has tiles + int minCount = Math.round(gridSize * gridSize * 0.75f); //ensure at least 75% of the grid has tiles while (tileCount < minCount) { //add a tile in a random location and then ensure it can be reached from start tile int q = Aggregates.randomInt(0, max);