From 4f078a8763447096ce77e07d3d8f3dc76314d0e9 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 22 Nov 2019 16:30:27 +0100 Subject: [PATCH] Orb of Choice is now useless in Land of Motion --- orbgen.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orbgen.cpp b/orbgen.cpp index 9b63a6f2..93f4c14c 100644 --- a/orbgen.cpp +++ b/orbgen.cpp @@ -203,6 +203,8 @@ EX string olrDescriptions[] = { EX eOrbLandRelation getOLR(eItem it, eLand l) { + if(l == laMotion && it == itOrbChoice && !inv::on) return olrUseless; + if(l == laPower) { if(it == itOrbFire) return olrPNative;