diff --git a/game.cpp b/game.cpp index 7f68433c..7b3751e6 100644 --- a/game.cpp +++ b/game.cpp @@ -1124,7 +1124,7 @@ int neighborId(cell *ofWhat, cell *whichOne) { } // how many monsters are near -eMonster which; +eMonster who_kills_me; bool flashWouldKill(cell *c, flagtype extra) { for(int t=0; ttype; t++) { @@ -1206,14 +1206,14 @@ bool monstersnear(stalemate1& sm) { bool fast = false; elec::builder b; - if(elec::affected(c)) { which = moLightningBolt; res++; } + if(elec::affected(c)) { who_kills_me = moLightningBolt; res++; } if(c->wall == waArrowTrap && c->wparam == 2) { - which = moArrowTrap; res++; + who_kills_me = moArrowTrap; res++; } for(auto c1: crush_now) if(c == c1) { - which = moCrusher; res++; + who_kills_me = moCrusher; res++; } if(sm.who == moPlayer || items[itOrbEmpathy]) { @@ -1222,7 +1222,7 @@ bool monstersnear(stalemate1& sm) { if(havewhat&HF_OUTLAW) if(outlawNearby(c, 3)) { - res++; which = moOutlaw; + res++; who_kills_me = moOutlaw; } for(int t=0; ttype; t++) { @@ -1250,7 +1250,7 @@ bool monstersnear(stalemate1& sm) { } // flashwitches cannot attack if it would kill another enemy if(c3->monst == moWitchFlash && flashWouldKill(c3, 0)) continue; - res++, which = c3->monst; + res++, who_kills_me = c3->monst; } // consider normal monsters @@ -1274,7 +1274,7 @@ bool monstersnear(stalemate1& sm) { eaten = true; else if(c2->monst != moHexSnake) continue; } - res++, which = m; + res++, who_kills_me = m; } } @@ -1354,12 +1354,12 @@ bool monstersnear2() { for(int j=0; j 8) - { b = true; which = moAirball; } + { b = true; who_kills_me = moAirball; } } for(int i=0; !b && itype; i++) { cell *c3 = c2->mov[i]; if(c3) for(int i=0; itype; i++) { diff --git a/orbs.cpp b/orbs.cpp index 9cb47197..1f611152 100644 --- a/orbs.cpp +++ b/orbs.cpp @@ -1238,9 +1238,8 @@ eItem targetRangedOrb(cell *c, orbAction a) { else if(jumpstate == 2 && c->wall) { addMessage(XLAT("Cannot jump on %the1!", c->wall)); } - else if(jumpstate == 3) { - addMessage(XLAT("%The1 would get you there!", which)); - } + else if(jumpstate == 3) + wouldkill("%The1 would get you there!"); else if(items[itOrbAir] && c->monst) { addMessage(XLAT("%The1 is immune to wind!", c->monst)); }