Fixed a bug with crashes in peaceful shmup

This commit is contained in:
Zeno Rogue 2017-08-13 19:14:16 +02:00
parent c911f48bbe
commit f7c1cfb4e4
1 changed files with 3 additions and 2 deletions

View File

@ -1397,11 +1397,12 @@ hyperpoint hornpos(int id) {
#define IGO 9
double igospan[IGO] = { 0,
double igospan[IGO+1] = { 0,
M_PI/6, -M_PI/6,
M_PI/4, -M_PI/4,
M_PI/3, -M_PI/3,
M_PI/2.1, -M_PI/2.1
M_PI/2.1, -M_PI/2.1,
0
};
bool swordKills(eMonster m) {