From c54ed7222f065152710c2c66b5423bb5d5a2ead5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 1 Sep 2017 22:37:20 +0200 Subject: [PATCH] Orb of the Mirror no longer claims to give 2 charges when mirroring itself after powering up --- inventory.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/inventory.cpp b/inventory.cpp index f944a458..5fd2d358 100644 --- a/inventory.cpp +++ b/inventory.cpp @@ -82,6 +82,7 @@ namespace inv { } int mirrorqty(eItem orb) { + if(orb == itOrbMirror) return 1; return int(mirrorqty0(orb) * sqrt(1.000001+items[itPower]/20.)); }