diff options
-rw-r--r-- | player.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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( |