1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-20 00:17:39 +00:00

renamed itOrbBrown to itOrbIntensity

This commit is contained in:
Zeno Rogue
2018-12-25 19:27:19 +01:00
parent 54e262c157
commit ebe75cdd62
5 changed files with 8 additions and 8 deletions

View File

@@ -6939,7 +6939,7 @@ bool collectItem(cell *c2, bool telekinesis) {
else playSound(c2, "pickup-orb");
if(items[itOrbChoice]) items[itOrbChoice] = 0, had_choice = true;
int oc = orbcharges(it);
if(markOrb(itOrbBrown)) oc = oc * 6 / 5;
if(markOrb(itOrbIntensity)) oc = oc * 6 / 5;
if(!items[it]) items[it]++;
items[it] += oc;
}