mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 16:07:55 +00:00
removed sv_fastweapons 4 as it may cause issues
This commit is contained in:
parent
4208993f22
commit
08e9d75538
1 changed files with 0 additions and 11 deletions
|
@ -125,17 +125,6 @@ void P_SetPsprite (player_t *player, int position, FState *state, bool nofunctio
|
||||||
|
|
||||||
if (sv_fastweapons == 2 && position == ps_weapon)
|
if (sv_fastweapons == 2 && position == ps_weapon)
|
||||||
psp->tics = state->ActionFunc == NULL ? 0 : 1;
|
psp->tics = state->ActionFunc == NULL ? 0 : 1;
|
||||||
else if (sv_fastweapons >= 4 && position == ps_weapon)
|
|
||||||
{
|
|
||||||
if(state->ActionFunc == NULL)
|
|
||||||
{
|
|
||||||
psp->tics = 0;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
psp->tics = (state->GetTics() != 0);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (sv_fastweapons == 3)
|
else if (sv_fastweapons == 3)
|
||||||
psp->tics = (state->GetTics() != 0);
|
psp->tics = (state->GetTics() != 0);
|
||||||
else if (sv_fastweapons)
|
else if (sv_fastweapons)
|
||||||
|
|
Loading…
Reference in a new issue