From 8e8633a49a80673066cb93a893854ddd05039bf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johnny=20Bergstr=C3=B6m?= Date: Thu, 22 Jul 2004 21:01:39 +0000 Subject: [PATCH] Fixed team native tags --- plugins/include/cstrike.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/include/cstrike.inc b/plugins/include/cstrike.inc index 64fc4abe..b2fdf47f 100755 --- a/plugins/include/cstrike.inc +++ b/plugins/include/cstrike.inc @@ -120,7 +120,7 @@ enum CsTeams { CS_TEAM_CT = 2, CS_TEAM_SPECTATOR = 3 }; -native cs_get_user_team(index); +native CsTeams:cs_get_user_team(index); /* Set user team without killing player. * If model is anything other than CS_DONTCHANGE, that will be set as player's model. @@ -137,7 +137,7 @@ enum CsInternalModel { CS_T_GUERILLA = 8, CS_CT_VIP = 9 }; -native cs_set_user_team(index, team, model = CS_DONTCHANGE); +native cs_set_user_team(index, CsTeams:team, CsInternalModel:model = CS_DONTCHANGE); /* Is user vip? Returns 1 if true, 0 if false. */