1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-17 10:44:48 +00:00

Orb of Phasing forbidden in the Princess Challenge

This commit is contained in:
Zeno Rogue 2019-04-10 01:13:38 +02:00
parent 8e7e1bbb3f
commit 5e9a54129b

View File

@ -268,8 +268,7 @@ eOrbLandRelation getOLR(eItem it, eLand l) {
l == laMinefield || l == laCocytus) return olrUseless;
if(l == laPrincessQuest)
if(it == itOrbAether || it == itOrbFlash || it == itOrbTeleport || it == itOrbSummon || it == itOrbFreedom ||
it == itOrbFriend)
if(among(it, itOrbAether, itOrbFlash, itOrbTeleport, itOrbSummon, itOrbFreedom, itOrbFriend, itOrbPhasing))
return olrForbidden;
if(l == laTemple)