]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Re-enable throwing, only disable passing phantom flags Mario/ctf_flag_stay 1491/head
authorMario <mario.mario@y7mail.com>
Fri, 21 Mar 2025 23:17:45 +0000 (09:17 +1000)
committerMario <mario.mario@y7mail.com>
Fri, 21 Mar 2025 23:17:45 +0000 (09:17 +1000)
qcsrc/common/gamemodes/gamemode/ctf/sv_ctf.qc

index bc8cd78c312988d5b73b615386dd8604431a409e..c86492e3b20893e99b7296fdd5cc09a1c50d4a39 100644 (file)
@@ -2405,10 +2405,10 @@ MUTATOR_HOOKFUNCTION(ctf, PlayerUseKey)
 
        entity player = M_ARGV(0, entity);
 
-       if((time > player.throw_antispam) && !IS_DEAD(player) && !player.speedrunning && player.flagcarried.classname != "phantomflag" && (!player.vehicle || autocvar_g_ctf_allow_vehicle_touch))
+       if((time > player.throw_antispam) && !IS_DEAD(player) && !player.speedrunning && (!player.vehicle || autocvar_g_ctf_allow_vehicle_touch))
        {
                // pass the flag to a team mate
-               if(autocvar_g_ctf_pass)
+               if(autocvar_g_ctf_pass && player.flagcarried.classname != "phantomflag")
                {
                        entity head, closest_target = NULL;
                        head = WarpZone_FindRadius(player.origin, autocvar_g_ctf_pass_radius, true);