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
1 changed files with 1 additions and 1 deletions

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);