mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-15 17:54:48 +00:00
Orb of Safety no longer goes above 7
This commit is contained in:
parent
11750efd2f
commit
bd412b0861
2
game.cpp
2
game.cpp
@ -6197,7 +6197,7 @@ bool collectItem(cell *c2, bool telekinesis) {
|
|||||||
#endif
|
#endif
|
||||||
else if(c2->item == itOrbSafety) {
|
else if(c2->item == itOrbSafety) {
|
||||||
playSound(c2, "pickup-orb"); // TODO safety
|
playSound(c2, "pickup-orb"); // TODO safety
|
||||||
items[c2->item] += 7;
|
items[c2->item] = 7;
|
||||||
if(shmup::on)
|
if(shmup::on)
|
||||||
shmup::safety = true;
|
shmup::safety = true;
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user