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.

0.6.0-stable
MW 2008-03-28 15:32:46 +00:00
parent 0e16488ca8
commit a13d68d98c
1 changed files with 2 additions and 2 deletions

View File

@ -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)