summaryrefslogtreecommitdiff
path: root/zombies.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrik@amftech.nl>2022-12-09 21:04:34 +0100
committerAldrik Ramaekers <aldrik@amftech.nl>2022-12-09 21:04:34 +0100
commitac4b9bd1ce461ecd2d54b8dbed633658b0431f8b (patch)
tree9246b6352b0ee70599b400f00c161a68d40b852e /zombies.c
parent1966263dd141a1c012a272a84af96206d68da55c (diff)
fix collision
Diffstat (limited to 'zombies.c')
-rw-r--r--zombies.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/zombies.c b/zombies.c
index 80a34ad..6b646fe 100644
--- a/zombies.c
+++ b/zombies.c
@@ -1,6 +1,7 @@
#include "include/zombies.h"
void spawn_zombie(int x, int y) {
+ return;
for (int i = 0; i < max_zombies; i++) {
zombie o = zombies[i];
if (o.alive) continue;