fix(game:) fixed infinite boost glitch

pull/3/head
Alex 2024-02-02 11:17:28 +01:00
parent 256ee77f1f
commit f22f19590d
1 changed files with 2 additions and 2 deletions

View File

@ -351,7 +351,7 @@ export const PlayerController = () => {
setCurrentSpeed(boostSpeed);
effectiveBoost.current -= 1 * delta * 144;
targetZPosition = 10;
turboSound.current.play();
if(!turboSound.current.isPlaying) turboSound.current.play();
driftTwoSound.current.play();
driftBlueSound.current.stop();
driftOrangeSound.current.stop();
@ -442,7 +442,7 @@ export const PlayerController = () => {
if(shootPressed && item === "mushroom") {
setIsBoosting(true);
boostDuration.current = 300;
effectiveBoost.current = 300;
actions.useItem();
}