From 16513f894829462fc788d951018a92babe4e9000 Mon Sep 17 00:00:00 2001 From: quou Date: Wed, 2 Oct 2024 21:25:50 +1000 Subject: update the gun special --- player.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/player.c b/player.c index 33e6d2c..4a83a91 100644 --- a/player.c +++ b/player.c @@ -220,11 +220,12 @@ void update_player_special(Player* p, const App* a, World* w) { sx = (p->x >> fbits) + 16; dz.x = sx; dz.y = (p->y >> fbits); - inst_deathzone(w, &dz, 0, 0, player_gun_damage, 1, 1); + inst_deathzone(w, &dz, 0, 0, player_gun_damage, 10, 1); activate_laser(&w->laser, dz.x, dz.y); - w->freeze = 3; + w->freeze = 5; } p->charge = 0; + play_sound(4096); } void update_player( -- cgit v1.2.3-54-g00ecf