mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-10-31 19:36:16 +00:00
do not spill slime through mirror walls
This commit is contained in:
parent
f725b3c823
commit
b3fe4d2698
3
game.cpp
3
game.cpp
@ -1321,7 +1321,8 @@ void prespill(cell* c, eWall t, int rad, cell *from) {
|
||||
c->wall == waTempFloor || c->wall == waTempBridge ||
|
||||
c->wall == waSandstone || c->wall == waCharged || c->wall == waGrounded ||
|
||||
c->wall == waMetal || c->wall == waSaloon || c->wall == waFan ||
|
||||
c->wall == waBarrowDig || c->wall == waBarrowWall)
|
||||
c->wall == waBarrowDig || c->wall == waBarrowWall ||
|
||||
c->wall == waMirrorWall)
|
||||
return;
|
||||
// these walls block further spilling
|
||||
if(c->wall == waCavewall || cellUnstable(c) || c->wall == waSulphur ||
|
||||
|
Loading…
Reference in New Issue
Block a user