Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Erik Minekus committed May 15, 2016
1 parent 4fc7c78 commit 6e9bc7d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/sourcemod/scripting/atac.sp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public void OnPluginStart()
RegConsoleCmd("sm_tkstatus", Command_TKStatus, "ATAC TK Status");

// Create arrays and tries
g_hPunishments = new ArrayList(64);
g_hPunishments = new ArrayList(ByteCountToCells(64));

// Store mod
char sBuffer[65];
Expand Down
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/include/atac.inc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define STEAM_BAN_TYPE 0
#define IP_BAN_TYPE 1

#define ATAC_VERSION "2.5.2"
#define ATAC_VERSION "2.5.3"

enum AtacInfo
{
Expand Down Expand Up @@ -47,7 +47,7 @@ typedef AtacPunishment = function void (int victim, int attacker);
* @param type AtacInfo type
* @return Value of client's information type
*/
native any ATAC_GetInfo(client, AtacInfo type);
native any ATAC_GetInfo(int client, AtacInfo type);

/**
* Retrieves a setting's value
Expand Down

0 comments on commit 6e9bc7d

Please sign in to comment.