From f10ce182cb3f56125949efec1ac78aee3f7778df Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 22 Jun 2025 23:21:16 +0200 Subject: [PATCH] fixed Orb of Sword blocking strong wind --- complex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complex.cpp b/complex.cpp index 85d85447..606b5a51 100644 --- a/complex.cpp +++ b/complex.cpp @@ -170,7 +170,7 @@ EX namespace whirlwind { auto mi = movei(c, dfrom[0]); jdata.moves.push_back(mi.rev()); cell *c2 = c->move(dfrom[0]); - if(!passable(c, c2, P_JUMP1)) return NULL; + if(!passable(c, c2, P_JUMP1 | P_ISPLAYER)) return NULL; if(player && i == 0 && !passable(c, c2, P_ISPLAYER)) return NULL; c = c2; }