From 4a6787d0a726fa81e1a49ef795166027b84cea7e Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Mon, 12 Jul 2021 00:50:52 -0700 Subject: [PATCH] Orb of Lava no longer intimidates allies --- environment.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.cpp b/environment.cpp index 624898eb..f0717bef 100644 --- a/environment.cpp +++ b/environment.cpp @@ -216,7 +216,7 @@ EX void computePathdist(eMonster param, bool include_allies IS(true)) { if(param == moTortoise && nogoSlow(c, c2)) continue; if(param == moIvyRoot && strictlyAgainstGravity(c, c2, false, MF_IVY)) continue; if(param == moWorm && (cellUnstable(c) || cellEdgeUnstable(c) || prairie::no_worms(c))) continue; - if(items[itOrbLava] && c2->cpdist <= 5 && pseudohept(c) && makeflame(c2, 1, true)) + if(!isFriendly(param) && items[itOrbLava] && c2->cpdist <= 5 && pseudohept(c) && makeflame(c2, 1, true)) continue; }