]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Remove a now unnecessary frozen check in CTF code
authorMario <mario.mario@y7mail.com>
Wed, 12 Feb 2025 10:04:08 +0000 (20:04 +1000)
committerMario <mario.mario@y7mail.com>
Wed, 12 Feb 2025 10:04:08 +0000 (20:04 +1000)
qcsrc/common/gamemodes/gamemode/ctf/sv_ctf.qc
qcsrc/common/gamemodes/gamemode/freezetag/sv_freezetag.qc

index d1040754cf659fe9424fc7a136987893b9b07bed..63ed0e436615b884bab2a5cd36f23e60aeaeddfd 100644 (file)
@@ -1142,7 +1142,6 @@ METHOD(Flag, giveTo, bool(Flag this, entity flag, entity toucher))
        // special touch behaviors
        // TODO: mutator hook to prevent picking up objectives
        if(IS_INDEPENDENT_PLAYER(toucher)) { return; }
-       else if(STAT(FROZEN, toucher)) { return; }
        else if(IS_VEHICLE(toucher))
        {
                if(autocvar_g_ctf_allow_vehicle_touch && toucher.owner)
index 70a7f27bc3c0ae1c1f46e98389b44fc9efda2248..46a518c862d3835a8a39f798e75d2a2d043916eb 100644 (file)
@@ -273,7 +273,7 @@ void freezetag_Unfreeze(entity targ, bool reset_health)
 
        targ.pauseregen_finished = time + autocvar_g_balance_pause_health_regen;
 
-       STAT(FROZEN, targ) = 0;
+       STAT(FROZEN, targ) = false;
        STAT(REVIVE_PROGRESS, targ) = 0;
        targ.revival_time = time;
        if(!targ.bot_attack)