diff options
author | Ima Mechanique <none@none> | 2011-11-24 12:48:17 +0000 |
---|---|---|
committer | Ima Mechanique <none@none> | 2011-11-24 12:48:17 +0000 |
commit | 413cd15f070c6c0406026c96e0b70698120366ef (patch) | |
tree | 375bb5077add240f0e9c71955feb8b7923bee58c | |
parent | eeefec394c932b79a22c5ea2b8aa03690bb6061e (diff) |
Fixed accidental change to HELLO_WORLD script.
-rw-r--r-- | indra/newview/llpreviewscript.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/indra/newview/llpreviewscript.cpp b/indra/newview/llpreviewscript.cpp index 16b582d188..0a429269ba 100644 --- a/indra/newview/llpreviewscript.cpp +++ b/indra/newview/llpreviewscript.cpp @@ -90,15 +90,15 @@ const std::string HELLO_LSL = "default\n" "{\n" - "\tstate_entry()\n" - "\t{\n" - "\t\tllOwnerSay(\"Hello, Avatar!\");\n" - "\t}\n" + " state_entry()\n" + " {\n" + " llOwnerSay(\"Hello, Avatar!\");\n" + " }\n" "\n" - "\ttouch_start(integer total_number)\n" - "\t{\n" - "\t\tllSay(llDetectedKey(0), \"Touched.\");\n" - "\t}\n" + " touch_start(integer total_number)\n" + " {\n" + " llSay(llDetectedKey(0), \"Touched.\");\n" + " }\n" "}\n"; const std::string HELP_LSL_PORTAL_TOPIC = "LSL_Portal"; |