Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions addons/sourcemod/scripting/VIP_Tag.sp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public Plugin myinfo =
name = "[VIP] Tag",
author = "R1KO, maxime1907",
description = "Gives a default VIP tag to VIPs",
version = "1.0.1",
version = "1.0.2",
url = ""
};

Expand All @@ -35,7 +35,7 @@ public Action OnToggleItem(int client, const char[] sFeatureName, VIP_ToggleStat
return Plugin_Continue;
}

public void OnClientConnected(int client)
public void OnClientPutInServer(int client)
{
if (IsFakeClient(client))
return;
Expand Down