From adfc0f69a218f412f288db5aecaadfd20cf70f15 Mon Sep 17 00:00:00 2001 From: zontreck Date: Sun, 3 Dec 2023 06:28:02 -0700 Subject: [PATCH] Change function used to try to remove quote from a string that did not originally contain them --- src/raw/dhb/Gag.lsl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raw/dhb/Gag.lsl b/src/raw/dhb/Gag.lsl index 4fa4ad8..ac42d7b 100644 --- a/src/raw/dhb/Gag.lsl +++ b/src/raw/dhb/Gag.lsl @@ -177,7 +177,7 @@ default llSay(0, garbleString(m)); }else if(c == g_iEmoteChannel) { - list lEmote = llParseStringKeepNulls(m,["\""],[]); + list lEmote = llParseString2List(m,["\""],[]); integer x = 0; integer e = llGetListLength(lEmote);