mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 00:41:59 +00:00
Fixed inventory ticking when playing online
No longer tied to the player's latency value as it now runs in the client-side logic.
This commit is contained in:
parent
302d279785
commit
5b1023c447
2 changed files with 6 additions and 4 deletions
|
@ -67,6 +67,12 @@ void P_RunClientsideLogic()
|
|||
|
||||
if (gamestate == GS_LEVEL || gamestate == GS_TITLELEVEL)
|
||||
{
|
||||
for (int i = 0; i < MAXPLAYERS; ++i)
|
||||
{
|
||||
if (playeringame[i] && players[i].inventorytics > 0)
|
||||
--players[i].inventorytics;
|
||||
}
|
||||
|
||||
for (auto level : AllLevels())
|
||||
{
|
||||
auto it = level->GetClientsideThinkerIterator<AActor>();
|
||||
|
|
|
@ -1671,10 +1671,6 @@ class PlayerPawn : Actor
|
|||
++BobTimer;
|
||||
CheckFOV();
|
||||
|
||||
if (player.inventorytics)
|
||||
{
|
||||
player.inventorytics--;
|
||||
}
|
||||
CheckCheats();
|
||||
|
||||
if (bJustAttacked)
|
||||
|
|
Loading…
Reference in a new issue