diff options
Diffstat (limited to 'src/zombies.c')
| -rw-r--r-- | src/zombies.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/zombies.c b/src/zombies.c index 6bb4eb6..1006e95 100644 --- a/src/zombies.c +++ b/src/zombies.c @@ -54,6 +54,8 @@ bool hit_zombie(int index, int damage) { int chunk_count = rand() % 4 + 1; for (int c = 0; c < chunk_count; c++) spawn_zombie_chunk(center); + add_zombie_audio_event_to_queue(EVENT_ZOMBIESCREECH, zombies[index].type, zombies[index].position); + zombies[index].alive = false; spawn_drop(zombies[index].position); return true; |
