diff options
author | Teravus Ovares | 2009-04-14 01:57:35 +0000 |
---|---|---|
committer | Teravus Ovares | 2009-04-14 01:57:35 +0000 |
commit | c2e75aecd1eba90d3a376896f1a798a4c9c58e6d (patch) | |
tree | 277760c63ec2af87374d62e2c3fd78a081e4be7a /OpenSim/Region/CoreModules/Avatar | |
parent | * Set eol-style: native on J2KImage.cs (diff) | |
download | opensim-SC-c2e75aecd1eba90d3a376896f1a798a4c9c58e6d.zip opensim-SC-c2e75aecd1eba90d3a376896f1a798a4c9c58e6d.tar.gz opensim-SC-c2e75aecd1eba90d3a376896f1a798a4c9c58e6d.tar.bz2 opensim-SC-c2e75aecd1eba90d3a376896f1a798a4c9c58e6d.tar.xz |
* Commit a variety of fixes to bugs discovered while trying to fix the NaN singularity.
* WebStatsModule doesn't crash on restart. GodsModule doesn't crash when there is no Dialog Module. LLUDPServer doesn't crash when the Operation was Aborted.
* ODEPlugin does 'Almost NaN' sanity checks.
* ODEPlugin sacrifices NaN avatars to the NaN black hole to appease it and keep it from sucking the rest of the world in.
Diffstat (limited to 'OpenSim/Region/CoreModules/Avatar')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs b/OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs index 9601ffc..335bc19 100644 --- a/OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/Gods/GodsModule.cs | |||
@@ -80,7 +80,8 @@ namespace OpenSim.Region.CoreModules.Avatar.Gods | |||
80 | } | 80 | } |
81 | else | 81 | else |
82 | { | 82 | { |
83 | m_dialogModule.SendAlertToUser(agentID, "Request for god powers denied"); | 83 | if (m_dialogModule != null) |
84 | m_dialogModule.SendAlertToUser(agentID, "Request for god powers denied"); | ||
84 | } | 85 | } |
85 | } | 86 | } |
86 | } | 87 | } |