From a7d85a2841c15a886ca8bcf55276668d58274f34 Mon Sep 17 00:00:00 2001 From: terencehill Date: Tue, 22 Jan 2019 14:41:42 +0100 Subject: [PATCH] CA: fix 'spectate previous player' action not working in real spectator mode; it fixes half of #2062 --- qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qc b/qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qc index 2bbed4a9a..686b0cbae 100644 --- a/qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qc +++ b/qcsrc/common/gamemodes/gamemode/clanarena/sv_clanarena.qc @@ -448,6 +448,8 @@ MUTATOR_HOOKFUNCTION(ca, SpectatePrev) return MUT_SPECPREV_RETURN; } } + else + return MUT_SPECPREV_CONTINUE; M_ARGV(1, entity) = targ; -- 2.39.2