changed llGetMemoryLimit to return 65536 as for Mono LSL

Signed-off-by: BlueWall <jamesh@bluewallgroup.com>
inv-download
Freaky Tech 2015-03-02 20:56:18 +01:00 committed by BlueWall
parent af2bf397b1
commit 0f72773017
1 changed files with 2 additions and 2 deletions

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)