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

Orb of Lava is now marked 'useless' in Graveyard

This commit is contained in:
Zeno Rogue 2019-01-17 01:00:32 +01:00
parent 681fd0f1c9
commit 923aae9cf1

View File

@ -325,6 +325,9 @@ eOrbLandRelation getOLR(eItem it, eLand l) {
if(isHaunted(l) && it == itOrbLava)
return olrUseless;
if(l == laGraveyard && it == itOrbLava)
return olrUseless;
if(l == laDryForest)
if(it == itOrbFire || it == itOrbLightning || it == itOrbLava)