mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
shmup:: Butterflies are no longer killable
This commit is contained in:
parent
ef98e048bb
commit
a6d36228b7
@ -1768,6 +1768,10 @@ void moveBullet(monster *m, int delta) {
|
|||||||
m->dead = true;
|
m->dead = true;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if(m2->type == moButterfly && conv) {
|
||||||
|
m->dead = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if(isBull(m2->type) && conv) {
|
if(isBull(m2->type) && conv) {
|
||||||
m->dead = true;
|
m->dead = true;
|
||||||
// enrage herd bulls, awaken sleeping bulls
|
// enrage herd bulls, awaken sleeping bulls
|
||||||
|
Loading…
Reference in New Issue
Block a user