From 7932c76d16f1854390c1e19405c69eef7e6f55c0 Mon Sep 17 00:00:00 2001 From: tommyrot Date: Fri, 25 Mar 2022 03:13:53 +0100 Subject: [PATCH] Fix wrong team being announced when the blue flag is returned after it gets destroyed. --- src/g_misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_misc.c b/src/g_misc.c index 6920934..bc0a152 100644 --- a/src/g_misc.c +++ b/src/g_misc.c @@ -334,7 +334,7 @@ BecomeExplosion1(edict_t *self) { CTFResetFlag(CTF_TEAM2); /* this will free self! */ gi.bprintf(PRINT_HIGH, "The %s flag has returned!\n", - CTFTeamName(CTF_TEAM1)); + CTFTeamName(CTF_TEAM2)); return; }