diff options
Diffstat (limited to 'DTPlayers.c')
| -rw-r--r-- | DTPlayers.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/DTPlayers.c b/DTPlayers.c index ab75aef..5a688e6 100644 --- a/DTPlayers.c +++ b/DTPlayers.c @@ -2,12 +2,12 @@ #strict 2 static const Player_Number = 0; -static const Player_ID = 0 + 1; -static const Player_Name = 0 + 1 + 1; -static const Player_TaggedName = 0 + 1 + 1 + 1; -static const Player_Color = 0 + 1 + 1 + 1 + 1; -static const Player_Team = 0 + 1 + 1 + 1 + 1 + 1; -static const Player_Type = 0 + 1 + 1 + 1 + 1 + 1 + 1; +static const Player_ID = 1; +static const Player_Name = 2; +static const Player_TaggedName = 3; +static const Player_Color = 4; +static const Player_Team = 5; +static const Player_Type = 6; global func GetPlayers(int team, bool exclude) { @@ -50,10 +50,10 @@ global func GetTaggedTeamName(int team) } static const Team_ID = 0; -static const Team_Name = 0 + 1; -static const Team_TaggedName = 0 + 1 + 1; -static const Team_Color = 0 + 1 + 1 + 1; -static const Team_Players = 0 + 1 + 1 + 1 + 1; +static const Team_Name = 1; +static const Team_TaggedName = 2; +static const Team_Color = 3; +static const Team_Players = 4; global func GetTeams() { @@ -79,4 +79,4 @@ global func GetTeamIDs() ret[GetLength(ret)] = team;; } return ret; -} +}
\ No newline at end of file |
