mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-15 09:44:48 +00:00
Merge pull request #161 from jruderman/woods_olr
Orb of the Woods now only appears in lands where it is potentially useful (and in hubs)
This commit is contained in:
commit
c6785203d1
@ -328,6 +328,14 @@ EX eOrbLandRelation getOLR(eItem it, eLand l) {
|
||||
return olrUseless;
|
||||
}
|
||||
|
||||
if(it == itOrbWoods && (l == laWarpSea || l == laWarpCoast))
|
||||
return olrDangerous;
|
||||
|
||||
if(it == itOrbWoods && !among(l,
|
||||
laDryForest, laWineyard, laCaribbean, laOvergrown, laHaunted, laHauntedWall, laHauntedBorder, laTortoise, laFrog, laEclectic,
|
||||
laVariant))
|
||||
return olrUseless;
|
||||
|
||||
if(it == itShard) {
|
||||
if(l == laDesert || l == laIce || l == laJungle || l == laGraveyard ||
|
||||
l == laRlyeh || l == laHell || l == laDryForest || l == laWineyard ||
|
||||
|
Loading…
Reference in New Issue
Block a user