v3.1.0: fissure rooms now have a minimum size of 5x5
This commit is contained in:
@@ -34,6 +34,16 @@ public class FissureRoom extends StandardRoom {
|
||||
public float[] sizeCatProbs() {
|
||||
return new float[]{6, 3, 1};
|
||||
}
|
||||
|
||||
@Override
|
||||
public int minHeight() {
|
||||
return Math.max(5, super.minHeight());
|
||||
}
|
||||
|
||||
@Override
|
||||
public int minWidth() {
|
||||
return Math.max(5, super.minWidth());
|
||||
}
|
||||
|
||||
@Override
|
||||
public void paint(Level level) {
|
||||
|
||||
Reference in New Issue
Block a user