fixes mantis #778 and shoots himself for making such a mistake to begin with, but also blames Tedd for the way the script functions have wrapper methods that call the same named method in a different class, is it my fault if in two such functions, I forget to add "m_LSL_Functions." and instead cause a recursive loop until the stack overflows.
parent
0e16488ca8
commit
a13d68d98c
|
@ -1939,12 +1939,12 @@ namespace OpenSim.Region.ScriptEngine.Common
|
|||
|
||||
public string osDrawRectangle(string drawList, int width, int height)
|
||||
{
|
||||
return osDrawRectangle(drawList, width, height);
|
||||
return m_LSL_Functions.osDrawRectangle(drawList, width, height);
|
||||
}
|
||||
|
||||
public string osDrawFilledRectangle(string drawList, int width, int height)
|
||||
{
|
||||
return osDrawFilledRectangle(drawList, width, height);
|
||||
return m_LSL_Functions.osDrawFilledRectangle(drawList, width, height);
|
||||
}
|
||||
|
||||
public string osSetFontSize(string drawList, int fontSize)
|
||||
|
|
Loading…
Reference in New Issue