mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-03-30 22:51:01 +00:00
Fixed prediction not calling virtual Tick function
This commit is contained in:
parent
4625d4ac34
commit
929febdfb1
1 changed files with 2 additions and 2 deletions
|
@ -1512,8 +1512,8 @@ void P_PredictPlayer (player_t *player)
|
|||
player->cmd = localcmds[i % LOCALCMDTICS];
|
||||
player->mo->ClearInterpolation();
|
||||
player->mo->ClearFOVInterpolation();
|
||||
P_PlayerThink (player);
|
||||
player->mo->Tick ();
|
||||
P_PlayerThink(player);
|
||||
player->mo->CallTick();
|
||||
}
|
||||
|
||||
if (rubberband)
|
||||
|
|
Loading…
Reference in a new issue