First two steps of fuel regen don't click, for easier feedback.

This commit is contained in:
Mari the Deer 2022-04-19 19:52:23 +02:00
commit d5f4c18d28
4 changed files with 5 additions and 4 deletions

View file

@ -1256,12 +1256,12 @@ Class Demolitionist : PlayerPawn
if ( (oldfuel < (default.dashfuel/24)) && (dashfuel >= default.dashfuel/24) )
{
fuelcooldown = 20;
A_StartSound("demolitionist/fuelrgend",CHAN_BODY,CHANF_OVERLAP,.6,4.,.8);
A_StartSound("demolitionist/fuelrgstp",CHAN_BODY,CHANF_OVERLAP,.6,4.,.6);
}
else if ( (oldfuel < (default.dashfuel/12)) && (dashfuel >= default.dashfuel/12) )
{
fuelcooldown = 10;
A_StartSound("demolitionist/fuelrgend",CHAN_BODY,CHANF_OVERLAP,.6,4.,.9);
A_StartSound("demolitionist/fuelrgstp",CHAN_BODY,CHANF_OVERLAP,.6,4.,.7);
}
if ( (oldfuel < dashfuel) && (dashfuel == default.dashfuel) )
{