v0.6.2a: reduced the size of secret summoning rooms

This commit is contained in:
Evan Debenham 2017-11-01 00:47:17 -04:00
parent a63032702f
commit 3cd6a2d08a

View File

@ -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);