From a6d36228b778ee5832ab224a4dc1c87dcfd81db7 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 14 Nov 2019 20:11:16 +0100 Subject: [PATCH] shmup:: Butterflies are no longer killable --- shmup.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/shmup.cpp b/shmup.cpp index c09ccca0..1bb05535 100644 --- a/shmup.cpp +++ b/shmup.cpp @@ -1768,6 +1768,10 @@ void moveBullet(monster *m, int delta) { m->dead = true; continue; } + if(m2->type == moButterfly && conv) { + m->dead = true; + continue; + } if(isBull(m2->type) && conv) { m->dead = true; // enrage herd bulls, awaken sleeping bulls