File diff r25574:6c110f88f880 → r25575:634f384ae528
src/script/api/script_admin.cpp
Show inline comments
 
@@ -136,11 +136,11 @@
 
	if (json.length() > NETWORK_GAMESCRIPT_JSON_LENGTH) {
 
		ScriptLog::Error("You are trying to send a table that is too large to the AdminPort. No data sent.");
 
		sq_pushinteger(vm, 0);
 
		return 1;
 
	}
 

	
 
	NetworkAdminGameScript(json.c_str());
 
	NetworkAdminGameScript(json);
 

	
 
	sq_pushinteger(vm, 1);
 
	return 1;
 
}