diff --git a/attack.cpp b/attack.cpp index e853eb0f..b64876ca 100644 --- a/attack.cpp +++ b/attack.cpp @@ -1099,6 +1099,7 @@ EX bool flashWouldKill(cell *c, flagtype extra) { for(int u=0; utype; u++) { cell *c3 = c2->move(u); if(isWorm(c3)) continue; // immune to Flash + if(isFriendly(c3)) continue; // player's allies and mounts don't count if(c3->monst == moEvilGolem) continue; // evil golems don't count if(c3 != c && (c3->monst || isPlayerOn(c3))) { bool b = canAttack(NULL, moWitchFlash, c3, c3->monst, AF_MAGIC | extra);