Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/clan_arena.c
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,13 @@ qbool isCA(void)

qbool CA_CanSpray(void)
{
// Prewar uses the general KTX spray policy. CA's in_play and round-pause
// checks only apply once a match is active.
if (!match_in_progress)
{
return true;
}

// Players must be in play (not dead or unready)
if (!self->ca_ready || !self->in_play)
{
Expand Down
Loading