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

Orb of Winter no longer useless in Volcanic

This commit is contained in:
Zeno Rogue 2019-04-29 03:39:29 +02:00
parent cf4829634f
commit 85f4c57202

View File

@ -301,7 +301,7 @@ eOrbLandRelation getOLR(eItem it, eLand l) {
if(it == itOrbWinter && l == laMinefield)
return olrForbidden;
if(it == itOrbWinter && l != laRlyeh && l != laTemple)
if(it == itOrbWinter && !among(l, laRlyeh, laTemple, laVolcano))
return olrUseless;
if(it == itOrbLife && l == laMotion)