]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/client.qc
Clan Arena: fix team selection dialog displayed once more after a player dies for...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / client.qc
index 97c4cce5a6b7b4e6e50f98721944f9604bcf979f..06aac36e774b659e4983a1f9578112bcd6ed03fe 100644 (file)
@@ -2151,8 +2151,8 @@ bool joinAllowed(entity this)
        if (CS(this).version_mismatch) return false;
        if (!nJoinAllowed(this, this)) return false;
        if (teamplay && lockteams) return false;
-       if (ShowTeamSelection(this)) return false;
        if (MUTATOR_CALLHOOK(ForbidSpawn, this)) return false;
+       if (ShowTeamSelection(this)) return false;
        return true;
 }