]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix warning spam in console if g_random_loot is active and a random powerup is droppe...
authorterencehill <piuntn@gmail.com>
Wed, 2 Apr 2025 17:26:01 +0000 (19:26 +0200)
committerterencehill <piuntn@gmail.com>
Wed, 2 Apr 2025 17:26:01 +0000 (19:26 +0200)
qcsrc/common/mutators/mutator/powerups/sv_powerups.qc

index 9f6ace3059924bf0fb1c6cd59670613008344d2b..17b4f1f1430ce3573a38524fb28ca720770f7ef5 100644 (file)
@@ -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)