v0.6.0: reduced the average size of common standard rooms

This commit is contained in:
Evan Debenham
2017-05-31 17:51:54 -04:00
parent c388463db2
commit 96e8ecbf7c
5 changed files with 5 additions and 5 deletions

View File

@@ -29,7 +29,7 @@ public class CaveRoom extends PatchRoom {
@Override
public float[] sizeCatProbs() {
return new float[]{6, 3, 1};
return new float[]{9, 3, 1};
}
@Override

View File

@@ -40,7 +40,7 @@ public class PillarsRoom extends StandardRoom {
@Override
public float[] sizeCatProbs() {
return new float[]{6, 3, 1};
return new float[]{9, 3, 1};
}
@Override

View File

@@ -39,7 +39,7 @@ public class RingRoom extends StandardRoom {
@Override
public float[] sizeCatProbs() {
return new float[]{6, 3, 1};
return new float[]{9, 3, 1};
}
@Override

View File

@@ -29,7 +29,7 @@ public class RuinsRoom extends PatchRoom {
@Override
public float[] sizeCatProbs() {
return new float[]{6, 3, 1};
return new float[]{9, 3, 1};
}
@Override

View File

@@ -42,7 +42,7 @@ public class SegmentedRoom extends StandardRoom {
@Override
public float[] sizeCatProbs() {
return new float[]{6, 3, 1};
return new float[]{9, 3, 1};
}
@Override