From: Samual Date: Sat, 31 Mar 2012 20:46:17 +0000 (-0400) Subject: Begin adding FLAG_PASSING flag status and think/touch methods X-Git-Tag: xonotic-v0.7.0~240^2~135 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=48f1b13b9c21dec9315cf27e8019088c4d876802;p=xonotic%2Fxonotic-data.pk3dir.git Begin adding FLAG_PASSING flag status and think/touch methods --- 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");