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
1 changed files with 1 additions and 0 deletions

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++;