fixed a bug with Greater Demons in shmup

This commit is contained in:
Zeno Rogue 2020-03-07 12:21:12 +01:00
parent 2923008a0b
commit a9febe3122
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ EX void popmonsters() {
EX void degradeDemons() {
for(monster* m: nonvirtual) {
if(m->type == moGreater) m->type = moLesser;
if(m->stk == moGreater) m->type = moLesser;
if(m->stk == moGreater) m->stk = moLesser;
}
}