mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
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.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user