Drop # to 4

This commit is contained in:
Jackz 2023-12-20 18:10:17 -06:00
parent ffe5ce3e94
commit a720ad3c22
No known key found for this signature in database
GPG key ID: E0BBD94CF657F603
2 changed files with 4 additions and 5 deletions

Binary file not shown.

View file

@ -5,7 +5,7 @@
#define PLUGIN_VERSION "1.0" #define PLUGIN_VERSION "1.0"
#define MAX_PLAYER_HISTORY 25 #define MAX_PLAYER_HISTORY 25
#define MAX_NOTES_TO_SHOW 5 #define MAX_NOTES_TO_SHOW 4
#define DATABASE_CONFIG_NAME "stats" #define DATABASE_CONFIG_NAME "stats"
#include <sourcemod> #include <sourcemod>
@ -438,9 +438,8 @@ public void DB_FindNotes(Database db, DBResultSet results, const char[] error, a
CPrintChatToAdmins(" {olive}%s: {default}%s", noteCreator, reason); CPrintChatToAdmins(" {olive}%s: {default}%s", noteCreator, reason);
} }
} }
int remainingNotes = count - MAX_NOTES_TO_SHOW; if(count >= MAX_NOTES_TO_SHOW) {
if(remainingNotes >= MAX_NOTES_TO_SHOW) { CPrintChatToAdmins(" ... and {olive}%d more", count - MAX_NOTES_TO_SHOW);
CPrintChatToAdmins(" ... and {olive}%d more", remainingNotes);
} }
if(actions > 0) { if(actions > 0) {
@ -536,7 +535,7 @@ bool ApplyAction(int targetUserId, const char[] action, const char[] key, const
Action Timer_SlapPlayer(Handle h, int userid) { Action Timer_SlapPlayer(Handle h, int userid) {
int client = GetClientOfUserId(userid); int client = GetClientOfUserId(userid);
if(client > 0) { if(client > 0 && IsClientInGame(client)) {
SlapPlayer(client, 0, true); SlapPlayer(client, 0, true);
} }
return Plugin_Handled; return Plugin_Handled;