From: terencehill Date: Sat, 10 Sep 2016 13:49:20 +0000 (+0200) Subject: Update CheckAllowedTeams hook description X-Git-Tag: xonotic-v0.8.2~605 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e747372248d775808c4d07d2c316e9ec44929a97;p=xonotic%2Fxonotic-data.pk3dir.git Update CheckAllowedTeams hook description --- diff --git a/qcsrc/server/mutators/events.qh b/qcsrc/server/mutators/events.qh index e27f1adf4..3743c6b94 100644 --- a/qcsrc/server/mutators/events.qh +++ b/qcsrc/server/mutators/events.qh @@ -98,9 +98,9 @@ MUTATOR_HOOKABLE(GiveFragsForKill, EV_GiveFragsForKill); /** called when the match ends */ MUTATOR_HOOKABLE(MatchEnd, EV_NO_ARGS); -/** should adjust number to contain the team count */ +/** allows adjusting allowed teams */ #define EV_CheckAllowedTeams(i, o) \ - /** number of teams */ i(float, MUTATOR_ARGV_0_float) \ + /** mask of teams */ i(float, MUTATOR_ARGV_0_float) \ /**/ o(float, MUTATOR_ARGV_0_float) \ /** team entity name */ i(string, MUTATOR_ARGV_1_string) \ /**/ o(string, MUTATOR_ARGV_1_string) \