diff options
Diffstat (limited to 'scripts/testing/lsl/cycle_object_animations.lsl')
-rw-r--r-- | scripts/testing/lsl/cycle_object_animations.lsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/testing/lsl/cycle_object_animations.lsl b/scripts/testing/lsl/cycle_object_animations.lsl index e7a378889a..46910e3656 100644 --- a/scripts/testing/lsl/cycle_object_animations.lsl +++ b/scripts/testing/lsl/cycle_object_animations.lsl @@ -7,7 +7,7 @@ say_if_verbose(integer channel, string message) { if (verbose) { - llSay(0, message); + llSay(channel, message); } } @@ -71,7 +71,7 @@ default listen(integer channel, string name, key id, string message) { - llOwnerSay("got message " + name + " " + (string) id + " " + message); + //llOwnerSay("got message " + name + " " + (string) id + " " + message); list words = llParseString2List(message,[" "],[]); string command = llList2String(words,0); string option = llList2String(words,1); |