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:
@@ -20,7 +20,7 @@ methodmap AsyncSocket < Handle {
|
||||
|
||||
public bool WriteNull(const char[] data)
|
||||
{
|
||||
this.Write(data, strlen(data) + 1);
|
||||
return this.Write(data, strlen(data) + 1);
|
||||
}
|
||||
|
||||
public native bool SetConnectCallback(AsyncSocketConnectCallback callback);
|
||||
|
||||
@@ -1052,9 +1052,9 @@ methodmap JSONRootNode < JSONValue {
|
||||
return view_as<JSONRootNode>(json_load_file(path));
|
||||
}
|
||||
|
||||
public static JSONRootNode Pack(const char[] packString, ArrayList params) {
|
||||
return JSONValue_ByPack(packString, params);
|
||||
}
|
||||
public static JSONRootNode Pack(const char[] packString, ArrayList params) {
|
||||
return view_as<JSONRootNode>(JSONValue_ByPack(packString, params));
|
||||
}
|
||||
|
||||
public void DumpToServer() {
|
||||
char sMsg[4096];
|
||||
|
||||
Reference in New Issue
Block a user