Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: warning compile for third party #6

Merged
merged 1 commit into from
Nov 17, 2024
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/Lilac_Discord.sp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public Plugin myinfo =
{
name = PLUGIN_NAME,
author = ".Rushaway, Dolly, koen",
version = "1.1.3",
version = "1.1.4",
description = "Send Lilac Detections notifications to discord",
url = "https://github.com/srcdslab/sm-plugin-lilac-discord"
};
Expand Down Expand Up @@ -92,8 +92,8 @@ public void lilac_cheater_detected(int client, int cheat_type)
return;
}

#if defined _autorecorder_included
char sDemo[256];
#if defined _autorecorder_included
if (g_Plugin_AutoRecorder)
{
char sDate[32];
Expand Down
Loading