From 5b1023c44781a38551c9d378f7781b74ae248bf0 Mon Sep 17 00:00:00 2001 From: Boondorl Date: Mon, 24 Mar 2025 21:30:01 -0400 Subject: [PATCH] Fixed inventory ticking when playing online No longer tied to the player's latency value as it now runs in the client-side logic. --- src/p_tick.cpp | 6 ++++++ wadsrc/static/zscript/actors/player/player.zs | 4 ---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/p_tick.cpp b/src/p_tick.cpp index b952aa23a0..18589a01bc 100644 --- a/src/p_tick.cpp +++ b/src/p_tick.cpp @@ -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(); diff --git a/wadsrc/static/zscript/actors/player/player.zs b/wadsrc/static/zscript/actors/player/player.zs index 1c87c515c9..eda8461443 100644 --- a/wadsrc/static/zscript/actors/player/player.zs +++ b/wadsrc/static/zscript/actors/player/player.zs @@ -1671,10 +1671,6 @@ class PlayerPawn : Actor ++BobTimer; CheckFOV(); - if (player.inventorytics) - { - player.inventorytics--; - } CheckCheats(); if (bJustAttacked)