1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

Merge pull request #162 from jruderman/no_luck_free_fall

Orb of Luck no longer appears in Free Fall
This commit is contained in:
Zeno Rogue 2021-06-28 20:55:13 +02:00 committed by GitHub
commit 4e447f5548
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -276,6 +276,8 @@ EX eOrbLandRelation getOLR(eItem it, eLand l) {
return olrUseless;
if(it == itOrbLuck && l == laMountain)
return olrUseless;
if(it == itOrbLuck && l == laWestWall)
return olrUseless;
if(it == itOrbLuck && l == laCamelot)
return olrUseless;
if(it == itOrbLuck && l == laHaunted)