fix tag mismatch

This commit is contained in:
shavitush 2016-07-02 02:11:33 +03:00
parent c789108539
commit 1ab534a52f
2 changed files with 2 additions and 2 deletions

View File

@ -449,7 +449,7 @@ native int Shavit_ZoneExists(MapZones type);
* @param type Mapzone type. (Check "enum MapZones")
* @return 1 if is in the mapzone, 0 if isn't.
*/
native int Shavit_InsideZone(int client, MapZones type);
native bool Shavit_InsideZone(int client, MapZones type);
/**
* Pauses a player's timer.

View File

@ -187,7 +187,7 @@ public void Shavit_OnFinish(int client, BhopStyle style, float time, int jumps)
public void PlayEventSound(int client, bool everyone, const char[] sound)
{
int[] clients = new int[MaxClients];
int count;
int count = 0;
for(int i = 1; i <= MaxClients; i++)
{