summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorIma Mechanique <none@none>2011-12-08 10:33:23 +0000
committerIma Mechanique <none@none>2011-12-08 10:33:23 +0000
commit468543c944b073af41a3cf7f6dfe73f097c2eb2d (patch)
tree3b94f20c3d79ed20960c64ab4af3a2e10a88731a /indra/newview
parent9890e5cbed50c8388f8159a73c8ce672a61bd576 (diff)
Reverting the changes to default script which leaked in from another project ;-)
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llpreviewscript.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/llpreviewscript.cpp b/indra/newview/llpreviewscript.cpp
index 0a429269ba..62603a2e07 100644
--- a/indra/newview/llpreviewscript.cpp
+++ b/indra/newview/llpreviewscript.cpp
@@ -90,15 +90,15 @@
const std::string HELLO_LSL =
"default\n"
"{\n"
- " state_entry()\n"
- " {\n"
- " llOwnerSay(\"Hello, Avatar!\");\n"
- " }\n"
+ " state_entry()\n"
+ " {\n"
+ " llSay(0, \"Hello, Avatar!\");\n"
+ " }\n"
"\n"
- " touch_start(integer total_number)\n"
- " {\n"
- " llSay(llDetectedKey(0), \"Touched.\");\n"
- " }\n"
+ " touch_start(integer total_number)\n"
+ " {\n"
+ " llSay(0, \"Touched.\");\n"
+ " }\n"
"}\n";
const std::string HELP_LSL_PORTAL_TOPIC = "LSL_Portal";