v0.6.2a: reduced the size of secret summoning rooms
This commit is contained in:
parent
a63032702f
commit
3cd6a2d08a
|
@ -31,6 +31,18 @@ import com.watabou.utils.Point;
|
||||||
|
|
||||||
public class SecretSummoningRoom extends SecretRoom {
|
public class SecretSummoningRoom extends SecretRoom {
|
||||||
|
|
||||||
|
//minimum of 3x3 traps, max of 6x6 traps
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int maxWidth() {
|
||||||
|
return 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int maxHeight() {
|
||||||
|
return 8;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void paint(Level level) {
|
public void paint(Level level) {
|
||||||
super.paint(level);
|
super.paint(level);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user