diff options
author | Douglas R. Miles | 2009-10-31 19:24:14 -0800 |
---|---|---|
committer | Diva Canto | 2009-10-31 19:05:02 -0700 |
commit | 7f4d646aeacef5e82a4f8df1494e3752afc3372f (patch) | |
tree | 13d879bcd1dc86590f07ef0598075ef937f8f1bb /OpenSim/Region/ScriptEngine | |
parent | Merge branch 'master' of ssh://MyConnection/var/git/opensim (diff) | |
download | opensim-SC_OLD-7f4d646aeacef5e82a4f8df1494e3752afc3372f.zip opensim-SC_OLD-7f4d646aeacef5e82a4f8df1494e3752afc3372f.tar.gz opensim-SC_OLD-7f4d646aeacef5e82a4f8df1494e3752afc3372f.tar.bz2 opensim-SC_OLD-7f4d646aeacef5e82a4f8df1494e3752afc3372f.tar.xz |
http://opensimulator.org/mantis/view.php?id=4337
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 3849558..c9221b8 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -3817,7 +3817,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3817 | { | 3817 | { |
3818 | case 1: // DATA_ONLINE (0|1) | 3818 | case 1: // DATA_ONLINE (0|1) |
3819 | // TODO: implement fetching of this information | 3819 | // TODO: implement fetching of this information |
3820 | if (userProfile.CurrentAgent.AgentOnline) | 3820 | if (userProfile.CurrentAgent!=null && userProfile.CurrentAgent.AgentOnline) |
3821 | reply = "1"; | 3821 | reply = "1"; |
3822 | else | 3822 | else |
3823 | reply = "0"; | 3823 | reply = "0"; |