sourcemod 1.13 upgrade. moved all plugins from steamworks to ripext. added smjanson and asyncsocket.inc an extra time so its easier to find. updated plugins that would not compile with 1.13

This commit is contained in:
jenz
2026-09-22 01:55:09 +02:00
parent 789b8ebef9
commit 2947bef434
17 changed files with 2131 additions and 462 deletions
+4 -2
View File
@@ -115,7 +115,8 @@ public void CheckStage()
if(StrEqual(sMethod, "counter"))
{
char sCounter[64];
if(!g_Config.GetString("counter", sCounter, sizeof(sCounter)))
g_Config.GetString("counter", sCounter, sizeof(sCounter), "not found");
if (StrEqual(sCounter, "not found"))
{
LogError("Could not find \"counter\"");
return;
@@ -172,7 +173,8 @@ public void CheckStage()
bHasDiffCounter = true;
char sDiffCounter[64];
if(!g_Config.GetString("counter", sDiffCounter, sizeof(sDiffCounter)))
g_Config.GetString("counter", sDiffCounter, sizeof(sDiffCounter), "not found");
if (StrEqual(sDiffCounter, "not found"))
{
LogError("Could not find \"diffcounter\"");
return;