1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-01-23 15:36:59 +00:00

fixed an exploit in Orb Strategy Mode (a trick to gain extra Golems)

This commit is contained in:
Zeno Rogue 2019-10-05 17:56:47 +02:00
parent f5ee8f3c98
commit f5b26cc07a

View File

@ -2396,7 +2396,7 @@ EX void livecaves() {
if(c->wall == waCavewall && c->item) c->wall = waCavefloor;
if(c->land == laDeadCaves) c->land = laCaves;
if(c->item == itSilver) c->item = itGold;
if(c->item == itGreenStone) c->item = itOrbLife;
if(c->item == itGreenStone && !inv::on) c->item = itOrbLife;
if(c->monst == moEarthElemental) {
addMessage(XLAT("%The1 is destroyed by the forces of Life!", c->monst));
fallMonster(c);