Change function used to try to remove quote from a string that did not originally contain them

This commit is contained in:
zontreck 2023-12-03 06:28:02 -07:00
parent 1e999da79d
commit adfc0f69a2

View file

@ -177,7 +177,7 @@ default
llSay(0, garbleString(m)); llSay(0, garbleString(m));
}else if(c == g_iEmoteChannel) }else if(c == g_iEmoteChannel)
{ {
list lEmote = llParseStringKeepNulls(m,["\""],[]); list lEmote = llParseString2List(m,["\""],[]);
integer x = 0; integer x = 0;
integer e = llGetListLength(lEmote); integer e = llGetListLength(lEmote);