1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-05 02:07:03 +00:00

spilled slime now stabilizes the Palace gates

This commit is contained in:
Zeno Rogue 2017-08-18 03:39:24 +02:00
parent a47000e608
commit 9d511e5526

View File

@ -1303,6 +1303,10 @@ void prespill(cell* c, eWall t, int rad, cell *from) {
if((c->monst == moSlime || c->monst == moSlimeNextTurn) && t == waNone) {
c->wall = waNone; attackMonster(c, 0, moNone);
}
if(c->wall == waClosedGate) {
c->wall = waPalace;
return;
}
// these walls block spilling completely
if(c->wall == waIcewall || c->wall == waBarrier || c->wall == waWarpGate ||
c->wall == waDeadTroll || c->wall == waDeadTroll2 ||
@ -1312,7 +1316,7 @@ void prespill(cell* c, eWall t, int rad, cell *from) {
c->wall == waDeadwall || c->wall == waWaxWall || c->wall == waCamelot || c->wall == waRoundTable ||
c->wall == waBigStatue || c->wall == waRed1 || c->wall == waRed2 || c->wall == waRed3 ||
c->wall == waTower ||
c->wall == waPalace || c->wall == waOpenGate || c->wall == waClosedGate ||
c->wall == waPalace ||
c->wall == waPlatform || c->wall == waStone || c->wall == waTempWall ||
c->wall == waTempFloor || c->wall == waTempBridge ||
c->wall == waSandstone || c->wall == waCharged || c->wall == waGrounded ||