1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-13 13:47:37 +00:00

red power aura in Land of Power

This commit is contained in:
Zeno Rogue
2019-06-01 19:26:02 +02:00
parent b1276e2184
commit 1077abf223
2 changed files with 7 additions and 2 deletions

View File

@@ -550,7 +550,8 @@ void giantLandSwitch(cell *c, int d, cell *from) {
if(v == 0 && !euclid) c->wall = waStone;
else {
v &= ~3;
if((v == 24 || v == 32 || v == 56))
c->landparam = (v == 24 || v == 32 || v == 56);
if(c->landparam)
c->wall = waEternalFire;
else if(hrand(100) < 10) {
c->wall = waGlass;