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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user