1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-24 01:00:25 +00:00

fire in Brownian no longer generates level-0 walls

This commit is contained in:
Zeno Rogue 2019-10-05 16:59:37 +02:00
parent b419aab0a1
commit 51ef84f0b2

View File

@ -1073,10 +1073,11 @@ EX void useup(cell *c) {
drawParticles(c, c->wall == waFire ? 0xC00000 : winf[c->wall].color, 10, 50);
if(c->wall == waTempFloor)
c->wall = waChasm;
else if(c->wall == waTempBridge || c->wall == waTempBridgeBlocked || c->wall == waBurningDock)
else if(c->wall == waTempBridge || c->wall == waTempBridgeBlocked || c->wall == waBurningDock || c->land == laBrownian)
placeWater(c, c);
else
else {
c->wall = c->land == laCaribbean ? waCIsland2 : waNone;
}
}
}