changed llGetMemoryLimit to return 65536 as for Mono LSL

Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
This commit is contained in:
Freaky Tech
2015-03-02 20:56:18 +01:00
committed by BlueWall
parent af2bf397b1
commit 0f72773017

View File

@@ -12287,8 +12287,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
public LSL_Integer llGetMemoryLimit()
{
m_host.AddScriptLPS(1);
// The value returned for LSO scripts in SL
return 16384;
// The value returned for Mono scripts in SL
return 65536;
}
public LSL_Integer llSetMemoryLimit(LSL_Integer limit)