From aacb8d2af9588b71de4d44607ba6f57195d4bdbf Mon Sep 17 00:00:00 2001 From: terencehill Date: Wed, 2 Apr 2025 19:26:01 +0200 Subject: [PATCH] Fix warning spam in console if g_random_loot is active and a random powerup is dropped on death --- qcsrc/common/mutators/mutator/powerups/sv_powerups.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/common/mutators/mutator/powerups/sv_powerups.qc b/qcsrc/common/mutators/mutator/powerups/sv_powerups.qc index 9f6ace305..17b4f1f14 100644 --- a/qcsrc/common/mutators/mutator/powerups/sv_powerups.qc +++ b/qcsrc/common/mutators/mutator/powerups/sv_powerups.qc @@ -79,8 +79,8 @@ MUTATOR_HOOKFUNCTION(powerups, MonsterValidTarget) void powerups_DropItem_Think(entity this) { - // Only needed to update if the timer of the powerup is running - if(!GetResource(this, RES_ARMOR)) + // if there is no armor it means the timer of the powerup is running + if(this.waypointsprite_attached && !GetResource(this, RES_ARMOR)) { float timeleft = floor(this.wait - time); if (timeleft) -- 2.39.5