Give me a scream corey

This commit is contained in:
Rendo 2025-11-17 16:31:26 +05:00
commit 9b1d780bf9

View file

@ -37,7 +37,7 @@ pub fn gun_shooting_system(
gun.shoot_timer.tick(time.delta());
if gun.shoot_timer.is_finished() == false || gun.shoot == false {
return;
continue;
}
let mut bullet_transform = transform.clone();
@ -53,7 +53,6 @@ pub fn gun_shooting_system(
Factions::PlayerFaction => projectile_sprite.player_projectile.clone(),
}),
));
gun.shoot_timer.reset();
}
}