mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-02 12:19:18 +00:00
spawn sound for Wind Crows
This commit is contained in:
parent
bcc13536af
commit
4d2fc2ba76
@ -18,7 +18,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)
|
||||
if(c->monst == moEagle || c->monst == moWindCrow)
|
||||
playSound(c, "seen-eagle");
|
||||
else if(c->monst == moEarthElemental)
|
||||
playSound(c, "seen-earth");
|
||||
|
Loading…
Reference in New Issue
Block a user