diff options
author | Melanie Thielker | 2017-01-07 20:38:30 +0000 |
---|---|---|
committer | Melanie Thielker | 2017-01-07 20:38:30 +0000 |
commit | e58903be6f745f7fca2a8d652e0f2d9a9283a04f (patch) | |
tree | 8b87e0524af7f610671a13f5e872f92dd8ef9a4e /OpenSim/Region/ClientStack | |
parent | Change improperly named isNPC to be IsNPC as a property should be uppercase (diff) | |
download | opensim-SC-e58903be6f745f7fca2a8d652e0f2d9a9283a04f.zip opensim-SC-e58903be6f745f7fca2a8d652e0f2d9a9283a04f.tar.gz opensim-SC-e58903be6f745f7fca2a8d652e0f2d9a9283a04f.tar.bz2 opensim-SC-e58903be6f745f7fca2a8d652e0f2d9a9283a04f.tar.xz |
Correct casing on isGod and isViewerUIGod
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 2bcb3bc..df34668 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -11455,7 +11455,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
11455 | ScenePresence p; | 11455 | ScenePresence p; |
11456 | if (scene.TryGetScenePresence(sender.AgentId, out p)) | 11456 | if (scene.TryGetScenePresence(sender.AgentId, out p)) |
11457 | { | 11457 | { |
11458 | if (p.isViewerUIGod) | 11458 | if (p.IsViewerUIGod) |
11459 | { | 11459 | { |
11460 | groupProfileReply.GroupData.OpenEnrollment = true; | 11460 | groupProfileReply.GroupData.OpenEnrollment = true; |
11461 | groupProfileReply.GroupData.MembershipFee = 0; | 11461 | groupProfileReply.GroupData.MembershipFee = 0; |