From afa62766d099bc096976b01c9ea9620d8c9ada9f Mon Sep 17 00:00:00 2001 From: rofl0r Date: Sun, 14 Jul 2013 18:38:59 +0200 Subject: [PATCH] australia spawnmap: fix off by one causing boss to get lost --- maps/spawn_australia.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/spawn_australia.c b/maps/spawn_australia.c index a3ca2a6..9696985 100644 --- a/maps/spawn_australia.c +++ b/maps/spawn_australia.c @@ -16811,7 +16811,7 @@ static const struct enemy_spawn SPAWN_ENTRY(35)[] = { const struct enemy_spawn_screen SPAWN_MAP[NUM_SCREENS] = { [35] = { - .num_spawns = 10, + .num_spawns = 11, .spawns = SPAWN_ENTRY(35), }, [34] = { -- 2.11.4.GIT