1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-24 05:17:17 +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(enter && nearriver(c) && opposite(c) && thisriver(c)) {
int hr = hrand(100);
if(hr == 0 && items[itGreenGrass] >= 10) {
if(hr == 0 && items[itGreenGrass] >= 10 && !inv::on) {
c->item = itOrbBull;
// orbs.push_back(c);
}