fixed a bug in notDippingFor

This commit is contained in:
Zeno Rogue 2020-12-24 06:07:14 +01:00
parent 96f84c77ca
commit 1b8b2f4c1e
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ EX bool notDippingFor(eItem i) {
int v = items[i] - currentLocalTreasure;
if(v <= 10) return true;
if(v >= 20) return false;
return v >= hrand(10) + 10;
return v < hrand(10) + 10;
}
EX bool notDippingForExtra(eItem i, eItem x) {