Yengine apply a fix to CheckRunLockInvariants by mrieker
parent
3b2786d27e
commit
a48d65fd77
|
@ -447,8 +447,9 @@ namespace OpenSim.Region.ScriptEngine.Yengine
|
||||||
// The script threw some kind of exception that was not caught at
|
// The script threw some kind of exception that was not caught at
|
||||||
// script level, so the script is no longer running an event handler.
|
// script level, so the script is no longer running an event handler.
|
||||||
eventCode = ScriptEventCode.None;
|
eventCode = ScriptEventCode.None;
|
||||||
|
stackFrames = null;
|
||||||
|
|
||||||
if(e is ScriptDeleteException)
|
if (e is ScriptDeleteException)
|
||||||
{
|
{
|
||||||
// Script did something like llRemoveInventory(llGetScriptName());
|
// Script did something like llRemoveInventory(llGetScriptName());
|
||||||
// ... to delete itself from the object.
|
// ... to delete itself from the object.
|
||||||
|
@ -474,7 +475,6 @@ namespace OpenSim.Region.ScriptEngine.Yengine
|
||||||
// Some general script error.
|
// Some general script error.
|
||||||
SendErrorMessage(e);
|
SendErrorMessage(e);
|
||||||
}
|
}
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -171,11 +171,11 @@
|
||||||
|
|
||||||
; the maximum distance to tell a viewer to connect to a neighbour region, so it can be seen
|
; the maximum distance to tell a viewer to connect to a neighbour region, so it can be seen
|
||||||
; (it is limited by MaxDrawDistance above)
|
; (it is limited by MaxDrawDistance above)
|
||||||
; less than 256 shows imediate neighbours; 256 to 511 also second imediate neighbours etc
|
; less than 256 shows immediate neighbours; 256 to 511 also second imediate neighbours etc
|
||||||
; more than 511m can cause viewers problems specially in case of dense regions.
|
; more than 511m can cause viewers problems specially in case of dense regions.
|
||||||
; curretly this distance is from current region borders.
|
; curretly this distance is from current region borders.
|
||||||
; Warning: if relevant regions have diferent setting you may notice strange
|
; Warning: if relevant regions have different setting you may notice strange
|
||||||
; effects due to that assimetry
|
; effects due to that asymmetry
|
||||||
; *****
|
; *****
|
||||||
;MaxRegionsViewDistance = 255
|
;MaxRegionsViewDistance = 255
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue