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:
Boondorl 2025-03-24 21:30:01 -04:00 committed by Ricardo Luís Vaz Silva
parent 302d279785
commit 5b1023c447
2 changed files with 6 additions and 4 deletions

View file

@ -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>();

View file

@ -1671,10 +1671,6 @@ class PlayerPawn : Actor
++BobTimer;
CheckFOV();
if (player.inventorytics)
{
player.inventorytics--;
}
CheckCheats();
if (bJustAttacked)