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

one missing commit for 10.2e

This commit is contained in:
Zeno Rogue 2017-12-05 16:18:27 +01:00
parent 721ab78790
commit 22535c919c

View File

@ -212,7 +212,7 @@ eOrbLandRelation getOLR(eItem it, eLand l) {
if(nativeOrbType(l) == it) return olrNative;
for(const orbinfo& oi: orbinfos)
if(oi.flags && orbgenflags::GUEST && oi.l == l && oi.orb == it)
if((oi.flags & orbgenflags::GUEST) && oi.l == l && oi.orb == it)
return olrGuest;
if(it == itOrbLuck && l == laIvoryTower)