aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorSean Dague2008-05-07 15:07:46 +0000
committerSean Dague2008-05-07 15:07:46 +0000
commite1e4fe7361cb0d1860c94437abaadef4d5d2904e (patch)
treea7140abb1f3cd0705b20af560b02706dd1331bb7 /OpenSim
parentrevert 4546, I definitely didn't understand what I was doing here (diff)
downloadopensim-SC_OLD-e1e4fe7361cb0d1860c94437abaadef4d5d2904e.zip
opensim-SC_OLD-e1e4fe7361cb0d1860c94437abaadef4d5d2904e.tar.gz
opensim-SC_OLD-e1e4fe7361cb0d1860c94437abaadef4d5d2904e.tar.bz2
opensim-SC_OLD-e1e4fe7361cb0d1860c94437abaadef4d5d2904e.tar.xz
replace 2 instances of "0000...." with LLUUID.Zero.ToSting() because
I was in the file and noticed them.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
index 6cebf04..481f890 100644
--- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
+++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs
@@ -2474,7 +2474,7 @@ namespace OpenSim.Region.ScriptEngine.Common
2474 } 2474 }
2475 else 2475 else
2476 { 2476 {
2477 return "00000000-0000-0000-0000-000000000000"; 2477 return LLUUID.Zero.ToString();
2478 } 2478 }
2479 } 2479 }
2480 2480
@@ -2488,7 +2488,7 @@ namespace OpenSim.Region.ScriptEngine.Common
2488 } 2488 }
2489 else 2489 else
2490 { 2490 {
2491 return "00000000-0000-0000-0000-000000000000"; 2491 return LLUUID.Zero.ToString();
2492 } 2492 }
2493 } 2493 }
2494 2494