From 32878e5191f82e78010d5bcc86c73339669dcef7 Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Sun, 27 Jun 2021 02:39:34 -0700 Subject: [PATCH] The Orb of Beauty now lifts rose-scent restrictions on targeting of ranged orbs --- orbs.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orbs.cpp b/orbs.cpp index a4c12b70..b61c5dc6 100644 --- a/orbs.cpp +++ b/orbs.cpp @@ -1246,7 +1246,7 @@ EX eItem targetRangedOrb(cell *c, orbAction a) { if(rosedist(cwt.at) == 1) { int r = rosemap[cwt.at]; int r2 = rosemap[c]; - if(r2 <= r) { + if(r2 <= r && !markOrb(itOrbBeauty)) { if(a == roKeyboard || a == roMouseForce ) addMessage(XLAT("Those roses smell too nicely. You can only target cells closer to them!")); return itNone;