1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-20 15:44:48 +00:00

added more orbs to isShmupLife

This commit is contained in:
Zeno Rogue
2025-10-10 13:02:34 +02:00
parent c4a39a4715
commit a9861cdcd7

View File

@@ -1848,11 +1848,11 @@ EX int orbcharges(eItem it) {
}
EX bool isShmupLifeOrb(eItem it) {
return
it == itOrbLife || it == itOrbFriend ||
it == itOrbNature || it == itOrbEmpathy ||
it == itOrbUndeath || it == itOrbLove ||
it == itOrbDomination || it == itOrbGravity;
return among(it,
itOrbLife, itOrbFriend, itOrbNature, itOrbEmpathy,
itOrbUndeath, itOrbLove, itOrbDomination, itOrbGravity,
itOrbWoods, itOrbChaos, itOrbImpact
);
}
EX void makelava(cell *c, int i) {