mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-07-08 04:12:50 +00:00
fixed a bug with Greater Demons in shmup
This commit is contained in:
parent
2923008a0b
commit
a9febe3122
@ -295,7 +295,7 @@ EX void popmonsters() {
|
|||||||
EX void degradeDemons() {
|
EX void degradeDemons() {
|
||||||
for(monster* m: nonvirtual) {
|
for(monster* m: nonvirtual) {
|
||||||
if(m->type == moGreater) m->type = moLesser;
|
if(m->type == moGreater) m->type = moLesser;
|
||||||
if(m->stk == moGreater) m->type = moLesser;
|
if(m->stk == moGreater) m->stk = moLesser;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user