From e9b2c929d65851266a35b6e04f208ac6282754ac Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Sat, 3 Jul 2021 00:19:48 -0700 Subject: [PATCH] Yellow Frogs no longer phase into the player's sword --- orbs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orbs.cpp b/orbs.cpp index e337f9e1..c1f60d3e 100644 --- a/orbs.cpp +++ b/orbs.cpp @@ -1189,7 +1189,7 @@ EX int check_phase(cell *cf, cell *ct, flagtype flags, cell*& jumpthru) { forCellCM(c2, cf) { if(isNeighbor(c2, ct) && !nonAdjacent(cf, c2) && !nonAdjacent(c2, ct)) { jumpthru = c2; - if(passable(ct, cf, P_ISPLAYER | P_PHASE)) { + if(passable(ct, cf, flags | P_PHASE)) { partial = 2; if(c2->monst || (isWall(c2) && c2->wall != waShrub)) { return 3;