1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-18 04:02:07 +00:00

fixed the Hyperstone Quest listing

This commit is contained in:
Zeno Rogue
2017-11-03 23:55:20 +01:00
parent e3b3347479
commit 499ac498f0
2 changed files with 9 additions and 8 deletions
+1 -1
View File
@@ -296,7 +296,7 @@ string contstr() {
eLand nextHyperstone() {
generateLandList(isLandValid);
for(eLand l: landlist)
if(items[treasureType(l)] < R10 && !isCrossroads(l))
if(items[treasureType(l)] < R10 && !isCrossroads(l) && l != laPrincessQuest && l != laCamelot)
return l;
if(items[itHyperstone] >= 10) return laNone;
return laCrossroads;