Skip to content
Closed
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions addons/sourcemod/scripting/AdvancedAdminList.sp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

#include <sourcemod>
#include <multicolors>
#include <sourcebanspp>

#pragma newdecls required

Expand Down Expand Up @@ -50,7 +51,7 @@ public Plugin myinfo =
name = "Advanced Admin List",
author = "maxime1907, .Rushaway",
description = "An advanced admin list system",
version = "2.1.4",
version = "2.1.5",
url = ""
};

Expand Down Expand Up @@ -267,7 +268,7 @@ public void OnMapEnd()
g_bMapEnd = true;
}

public void OnClientPostAdminCheck(int client)
public void SBPP_OnClientPostAdminCheck(int client)
{
if (g_bMapEnd)
return;
Expand Down
7 changes: 7 additions & 0 deletions sourceknight.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,13 @@ project:
- source: /addons/sourcemod/scripting/include
dest: /addons/sourcemod/scripting/include

- name: SourceBans++
type: git
repo: https://github.com/sbpp/sourcebans-pp
unpack:
- source: /game/addons/sourcemod/scripting/include
dest: /addons/sourcemod/scripting/include

root: /
output: /addons/sourcemod/plugins

Expand Down