v0.8.0a: enlarged the exit region in DK's boss levels

This commit is contained in:
Evan Debenham 2020-04-27 01:11:14 -04:00
parent ee87446c1e
commit e1fb7600df

View File

@ -154,8 +154,8 @@ public class NewCityBossLevel extends Level {
//exit hallway
Painter.fill(this, end, Terrain.CHASM);
Painter.fill(this, end.left+4, end.top+5, 7, 18, Terrain.EMPTY);
Painter.fill(this, end.left+4, end.top+5, 7, 2, Terrain.EXIT);
exit = end.left+7 + (end.top+6)*width();
Painter.fill(this, end.left+4, end.top+5, 7, 4, Terrain.EXIT);
exit = end.left+7 + (end.top+8)*width();
impShop = new ImpShopRoom();
impShop.set(end.left+3, end.top+12, end.left+11, end.top+20);