Add return to AskPluginLoad2 to fix sm1.11 error

This commit is contained in:
Bara 2021-10-27 15:22:09 +02:00 committed by GitHub
parent b99fb4f0c8
commit 4e372d30f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,6 +55,7 @@ public APLRes AskPluginLoad2(Handle myself, bool late, char[] error, int err_max
{ {
LateLoad = late; LateLoad = late;
RegPluginLibrary("endtouchfix"); RegPluginLibrary("endtouchfix");
return APLRes_Success;
} }
public void OnClientPutInServer(int client) public void OnClientPutInServer(int client)
@ -76,4 +77,4 @@ public Action PostThink(int client)
} }
return Plugin_Continue; return Plugin_Continue;
} }