From 6df768c84ccb55d40df3d4140531412cb22d3ba7 Mon Sep 17 00:00:00 2001 From: Samual Lenks Date: Mon, 10 Sep 2012 03:48:44 -0400 Subject: [PATCH] We're supposed to check this value for use key ^_^ --- qcsrc/server/mutators/gamemode_ctf.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/mutators/gamemode_ctf.qc b/qcsrc/server/mutators/gamemode_ctf.qc index f5ecce936..6bea4841c 100644 --- a/qcsrc/server/mutators/gamemode_ctf.qc +++ b/qcsrc/server/mutators/gamemode_ctf.qc @@ -1091,7 +1091,7 @@ MUTATOR_HOOKFUNCTION(ctf_PortalTeleport) MUTATOR_HOOKFUNCTION(ctf_PlayerUseKey) { - if(gameover) { return FALSE; } + if(MUTATOR_RETURNVALUE || gameover) { return FALSE; } entity player = self; -- 2.39.2