]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Don't update idletime while the game window is inactive
authorbones_was_here <bones_was_here@xonotic.au>
Sun, 9 Feb 2025 14:07:34 +0000 (00:07 +1000)
committerbones_was_here <bones_was_here@xonotic.au>
Mon, 10 Feb 2025 17:46:22 +0000 (03:46 +1000)
qcsrc/ecs/systems/sv_physics.qc

index 2d00a4d21a81ff7b28d5b08b35dfd4e0cac7823e..8b39cfee11252f1f5ea28c3e870d8d80ca9ef5a7 100644 (file)
@@ -26,10 +26,13 @@ void sys_phys_monitor(entity this, float dt)
 {
        int buttons = PHYS_INPUT_BUTTON_MASK(this);
        anticheat_physics(this);
-       if (autocvar_sv_maxidle > 0 || autocvar_sv_maxidle_playertospectator > 0) {
+       if (autocvar_sv_maxidle > 0 || autocvar_sv_maxidle_playertospectator > 0)
+       {
+               if (!PHYS_INPUT_BUTTON_CHAT(this))
                if (buttons != CS(this).buttons_old
-                   || CS(this).movement != CS(this).movement_old
-                   || this.v_angle != CS(this).v_angle_old) { CS(this).parm_idlesince = time; }
+               || CS(this).movement != CS(this).movement_old
+               || this.v_angle != CS(this).v_angle_old)
+                       CS(this).parm_idlesince = time;
        }
        PM_check_punch(this, dt);
 }