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

brownian:: nicer finding, and theme/balance improvements

This commit is contained in:
Zeno Rogue
2019-01-02 22:01:00 +01:00
parent 72417638d7
commit 5598bf3e08
5 changed files with 56 additions and 16 deletions

View File

@@ -21,7 +21,7 @@ void playSeenSound(cell *c) {
bool nearme = c->cpdist <= 7;
forCellEx(c2, c) if(c2->cpdist <= 7) nearme = true;
if(!nearme) return;
if(c->monst == moEagle || c->monst == moWindCrow)
if(among(c->monst, moEagle, moWindCrow, moAcidBird))
playSound(c, "seen-eagle");
else if(c->monst == moEarthElemental)
playSound(c, "seen-earth");