diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-09-05 16:01:20 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-09-05 16:01:20 +0100 |
commit | 943a1f3e802ee75683266a9a5d24ae4610207232 (patch) | |
tree | 14c69d9d5b89889087a9a53b271f161ac75c40ef /scripts/testing/lsl/cycle_object_animations.lsl | |
parent | a3366243f3521e3309f62599cd7f12bf913b3431 (diff) | |
parent | 57bb63bafd2adc744ea8cab63593abd90c7199df (diff) |
merge
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); |