LSL-PyOptimizer/unit_tests/regression.suite/issue-21.lsl
Sei Lisa e3c1634724 Fix regression introduced with the latest changes to loadlib
In Python 2, function type names from buiiltins.txt were entered into the tables as Unicode, causing the output module to promote strings to Unicode, and causing trouble further down the line.

Entering them as str fixes the issue.

Thanks a lot to @PeterStindberg for reporting the issue and providing a script that reproduces it.

Fixes #21
2023-01-09 11:03:41 +01:00

8 lines
139 B
Text

default
{
state_entry()
{
llOwnerSay(llList2Key(llGetObjectDetails("", [1]),0));
llOwnerSay(llChar(0xA1));
}
}