v1.2.1: increased the minimum size of goo entrance rooms
This commit is contained in:
+10
@@ -29,6 +29,16 @@ import com.shatteredpixel.shatteredpixeldungeon.levels.rooms.standard.EntranceRo
|
||||
|
||||
public class SewerBossEntranceRoom extends EntranceRoom {
|
||||
|
||||
@Override
|
||||
public int minWidth() {
|
||||
return Math.max(super.minWidth(), 7);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int minHeight() {
|
||||
return Math.max(super.minHeight(), 7);
|
||||
}
|
||||
|
||||
public void paint(Level level ) {
|
||||
|
||||
Painter.fill( level, this, Terrain.WALL );
|
||||
|
||||
Reference in New Issue
Block a user