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

CA does not count for hyperstones

This commit is contained in:
Zeno Rogue 2024-03-14 20:27:01 +01:00
parent 94bf06f7dc
commit 97f8c5ed72

View File

@ -246,6 +246,7 @@ EX void countHyperstoneQuest(int& i1, int& i2) {
i1 = 0; i2 = 0;
generateLandList(isLandIngame);
for(eLand l: landlist) {
if(l == laCA) continue;
eItem ttype = treasureType(l);
if(!required_for_hyperstones(ttype)) continue;
i2++; if(items[ttype] >= R10) i1++;