Skip to content

Commit 161ba2c

Browse files
authored
Merge pull request #433 from Groruk/repo
Preperation for 1.6.3 release
2 parents 0d9ef4b + f247f16 commit 161ba2c

File tree

9 files changed

+150
-150
lines changed

9 files changed

+150
-150
lines changed

game/addons/sourcemod/scripting/sbpp_admcfg.sp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public Plugin myinfo =
3737
name = "SourceBans++: Admin Config Loader",
3838
author = "AlliedModders LLC, SourceBans++ Dev Team",
3939
description = "Reads Admin Files",
40-
version = "1.6.3-PRE",
40+
version = "1.6.3",
4141
url = "https://sbpp.github.io"
4242
};
4343

game/addons/sourcemod/scripting/sbpp_checker.sp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include <sourcemod>
2828

29-
#define VERSION "1.6.3-PRE"
29+
#define VERSION "1.6.3"
3030
#define LISTBANS_USAGE "sm_listbans <#userid|name> - Lists a user's prior bans from Sourcebans"
3131
#define LISTCOMMS_USAGE "sm_listcomms <#userid|name> - Lists a user's prior comms from Sourcebans"
3232
#define INVALID_TARGET -1
@@ -112,7 +112,7 @@ public OnConnectBanCheck(Handle:owner, Handle:hndl, const String:error[], any:us
112112
else{
113113
PrintToBanAdmins("\x04[SourceBans++]\x01 Warning: Player \"%N\" has %d previous ban%s and %d previous commban%s.",
114114
client, bancount, ((bancount > 1 || bancount == 0) ? "s":""),commcount,((commcount > 1 || commcount == 0) ? "s":""));
115-
}
115+
}
116116
}
117117
}
118118

@@ -365,7 +365,7 @@ public OnListComms(Handle:owner, Handle:hndl, const String:error[], any:pack)
365365
return;
366366
}
367367

368-
368+
369369
PrintListResponse(clientuid, client, "[SourceBans++] Listing comms for %s", targetName);
370370
PrintListResponse(clientuid, client, "Ban Date Banned By Length End Date T R Reason");
371371
PrintListResponse(clientuid, client, "-------------------------------------------------------------------------------");
@@ -379,7 +379,7 @@ public OnListComms(Handle:owner, Handle:hndl, const String:error[], any:pack)
379379
new String:CommType[2] = " ";
380380
new String:RemoveType[2] = " ";
381381

382-
382+
383383

384384
if (!SQL_IsFieldNull(hndl, 0))
385385
{

game/addons/sourcemod/scripting/sbpp_comms.sp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
// Do not edit below this line //
4343
//-----------------------------//
4444

45-
#define PLUGIN_VERSION "1.6.3-PRE"
45+
#define PLUGIN_VERSION "1.6.3"
4646
#define PREFIX "\x04[SourceComms++]\x01 "
4747

4848
#define MAX_TIME_MULTI 30 // maximum mass-target punishment length
@@ -1689,7 +1689,7 @@ public Query_VerifyBlock(Handle:owner, Handle:hndl, const String:error[], any:us
16891689
{
16901690
case TYPE_MUTE:
16911691
{
1692-
//Set mute type based on length
1692+
//Set mute type based on length
16931693
if (length > 0)
16941694
g_MuteType[client] = bTime;
16951695
else if (length == 0)

0 commit comments

Comments
 (0)