diff options
-rw-r--r-- | engines/hdb/ai-funcs.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/hdb/ai-funcs.cpp b/engines/hdb/ai-funcs.cpp index 38df8ce3fa..af55d86586 100644 --- a/engines/hdb/ai-funcs.cpp +++ b/engines/hdb/ai-funcs.cpp @@ -874,8 +874,9 @@ void AI::stunEnemy(AIEntity *e, int time) { case AI_BOOMBARREL: g_hdb->_sound->playSound(SND_CLUB_HIT_METAL); break; - case AI_CHICKEN: // Fall through + case AI_CHICKEN: g_hdb->_sound->playSound(SND_CHICKEN_DEATH); + // fallthrough default: warning("STUB: stunEnemy: MetalOrFleshSnd"); break; |