From 0f3b9707a6cfbf1a58ce74df4494544cb431530a Mon Sep 17 00:00:00 2001 From: laochailan Date: Thu, 14 Sep 2017 16:28:16 +0200 Subject: [PATCH] make the bigballs in elly baryon2 more visible --- src/stages/stage6_events.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stages/stage6_events.c b/src/stages/stage6_events.c index d1b45f46..f7e737d9 100644 --- a/src/stages/stage6_events.c +++ b/src/stages/stage6_events.c @@ -939,7 +939,7 @@ void elly_baryonattack2(Boss *b, int t) { complex n = cexp(I*(a+carg(global.plr.pos-b->pos))); for(int j = 0; j < 3; ++j) { - create_projectile2c("bigball", b->pos, rgb(0,0.2,0.9), asymptotic, n, 2 * j)->draw = ProjDrawAdd; + create_projectile2c("bigball", b->pos, rgb(0,0.2,0.9), asymptotic, n, 2 * j); } } } else { @@ -949,7 +949,7 @@ void elly_baryonattack2(Boss *b, int t) { for(x = -w; x <= w; x++) for(y = -w; y <= w; y++) - create_projectile2c("bigball", b->pos+25*(x+I*y)*n, rgb(0,0.2,0.9), asymptotic, n, 3)->draw = ProjDrawAdd; + create_projectile2c("bigball", b->pos+25*(x+I*y)*n, rgb(0,0.2,0.9), asymptotic, n, 3); } } }