From: terencehill Date: Wed, 2 Apr 2025 17:26:01 +0000 (+0200) Subject: Fix warning spam in console if g_random_loot is active and a random powerup is droppe... X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=aacb8d2af9588b71de4d44607ba6f57195d4bdbf;p=xonotic%2Fxonotic-data.pk3dir.git Fix warning spam in console if g_random_loot is active and a random powerup is dropped on death --- 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)