From 48f1b13b9c21dec9315cf27e8019088c4d876802 Mon Sep 17 00:00:00 2001 From: Samual Date: Sat, 31 Mar 2012 16:46:17 -0400 Subject: [PATCH] Begin adding FLAG_PASSING flag status and think/touch methods --- qcsrc/server/mutators/gamemode_ctf.qc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/qcsrc/server/mutators/gamemode_ctf.qc b/qcsrc/server/mutators/gamemode_ctf.qc index e3802f99e..5bce0fd4d 100644 --- a/qcsrc/server/mutators/gamemode_ctf.qc +++ b/qcsrc/server/mutators/gamemode_ctf.qc @@ -600,6 +600,12 @@ void ctf_FlagThink() } return; } + + case FLAG_PASSING: + { + dprint("Someone touched a flag even though it was being carried?\n"); + break; + } default: // this should never happen { @@ -657,6 +663,12 @@ void ctf_FlagTouch() break; } + case FLAG_PASSING: + { + dprint("Someone touched a flag even though it was being carried?\n"); + break; + } + default: // this should never happen { dprint("Touch: Flag exists with no status?\n"); -- 2.39.2