1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-04-13 06:13:17 +00:00

Orb of the Mirror no longer claims to give 2 charges when mirroring itself after powering up

This commit is contained in:
Zeno Rogue 2017-09-01 22:37:20 +02:00
parent b46faaa491
commit c54ed7222f

View File

@ -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.));
}