1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-03 07:13:20 +00:00

push Statue/Fire with Orb of Winter

This commit is contained in:
Zeno Rogue
2020-09-15 20:01:30 +02:00
parent 313204f732
commit b782452a4a
4 changed files with 7 additions and 7 deletions

View File

@@ -1222,7 +1222,7 @@ EX eItem targetRangedOrb(cell *c, orbAction a) {
auto& c2 = mi.t;
if(!mi.op()) nowhereToBlow = true;
else if(isBoat(c) && !isWatery(c2) && c2->wall != waNone) nowhereToBlow = true;
else if(c->wall == waBigStatue && !canPushStatueOn(c2)) nowhereToBlow = true;
else if(c->wall == waBigStatue && !canPushStatueOn(c2, P_BLOW)) nowhereToBlow = true;
else {
if(!isCheck(a)) blowoff(mi), apply_impact(c);
return itOrbAir;