1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-05-25 02:24:06 +00:00

no more Orbs of the Bool in Orb Strategy Mode

This commit is contained in:
Zeno Rogue 2019-05-25 03:36:08 +02:00
parent 599d5d63e8
commit dad8192a19

View File

@ -3065,7 +3065,7 @@ namespace prairie {
// if(nearriver(c) && op // if(nearriver(c) && op
if(enter && nearriver(c) && opposite(c) && thisriver(c)) { if(enter && nearriver(c) && opposite(c) && thisriver(c)) {
int hr = hrand(100); int hr = hrand(100);
if(hr == 0 && items[itGreenGrass] >= 10) { if(hr == 0 && items[itGreenGrass] >= 10 && !inv::on) {
c->item = itOrbBull; c->item = itOrbBull;
// orbs.push_back(c); // orbs.push_back(c);
} }