mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-12-25 01:20:37 +00:00
fire in Brownian no longer generates level-0 walls
This commit is contained in:
parent
b419aab0a1
commit
51ef84f0b2
5
game.cpp
5
game.cpp
@ -1073,10 +1073,11 @@ EX void useup(cell *c) {
|
|||||||
drawParticles(c, c->wall == waFire ? 0xC00000 : winf[c->wall].color, 10, 50);
|
drawParticles(c, c->wall == waFire ? 0xC00000 : winf[c->wall].color, 10, 50);
|
||||||
if(c->wall == waTempFloor)
|
if(c->wall == waTempFloor)
|
||||||
c->wall = waChasm;
|
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);
|
placeWater(c, c);
|
||||||
else
|
else {
|
||||||
c->wall = c->land == laCaribbean ? waCIsland2 : waNone;
|
c->wall = c->land == laCaribbean ? waCIsland2 : waNone;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user