v0.6.0: increased the minimum size of ring rooms
ring passage width is now always at least 2
This commit is contained in:
parent
0a050c9fbf
commit
4587919386
|
@ -29,12 +29,12 @@ public class RingRoom extends StandardRoom {
|
|||
|
||||
@Override
|
||||
public int minWidth() {
|
||||
return Math.max(super.minWidth(), 5);
|
||||
return Math.max(super.minWidth(), 7);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int minHeight() {
|
||||
return Math.max(super.minHeight(), 5);
|
||||
return Math.max(super.minHeight(), 7);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue
Block a user