]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Disallow stealing the nb ball while dead 1476/head
authorotta8634 <k9wolf@pm.me>
Sun, 16 Feb 2025 09:30:28 +0000 (17:30 +0800)
committerotta8634 <k9wolf@pm.me>
Sun, 16 Feb 2025 09:30:28 +0000 (17:30 +0800)
Previously the ball could be stolen if the Ball Stealer secondary shot landed after the player who fired it was fragged.
Now if it lands it'll still do knockback, but just not steal the ball.

qcsrc/common/gamemodes/gamemode/nexball/sv_weapon.qc

index d3d3a6a9dcb30ae59eb103760e1f8cb5ca00c952..7bb6c98c1dd89a1bd3eaddc64ad008f2df38f781 100644 (file)
@@ -87,7 +87,7 @@ void W_Nexball_Touch(entity this, entity toucher)
                {
                        toucher.velocity = toucher.velocity + normalize(this.velocity) * toucher.damageforcescale * autocvar_g_balance_nexball_secondary_force;
                        UNSET_ONGROUND(toucher);
-                       if(!attacker.ballcarried)
+                       if(!attacker.ballcarried && !IS_DEAD(attacker))
                        {
                                LogNB("stole", attacker);
                                _sound(toucher, CH_TRIGGER, ball.noise2, VOL_BASE, ATTEN_NORM);