Removed bars

This commit is contained in:
Anuken
2018-08-14 10:29:45 -04:00
parent 8986b89d67
commit 29bcb8e07c
4 changed files with 5 additions and 4 deletions

View File

@@ -127,7 +127,7 @@ public class FortressGenerator{
int maxIndex = (int)(1 + ((float)gen.sector.difficulty / maxDifficulty * (structures.length-2)));
for(int i = maxIndex/2; i < maxIndex; i++){
selected.add(structures[i]);
selected.add(structures[Math.min(i, structures.length-1)]);
}
float baseChance = 0.8f / selected.size;