aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-08-28 02:45:28 +0100
committerJustin Clark-Casey (justincc)2010-08-28 02:45:28 +0100
commit374807d19421963a5ff842513079f94a3044bfa9 (patch)
treed3718c037bc338f99891529035ccde95ec3987cd /OpenSim
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-374807d19421963a5ff842513079f94a3044bfa9.zip
opensim-SC_OLD-374807d19421963a5ff842513079f94a3044bfa9.tar.gz
opensim-SC_OLD-374807d19421963a5ff842513079f94a3044bfa9.tar.bz2
opensim-SC_OLD-374807d19421963a5ff842513079f94a3044bfa9.tar.xz
Replace hardcoded 0 with KickFlags provided by the client.
This finally completes http://opensimulator.org/mantis/view.php?id=4356 where this change had been accidentally removed. Thanks Revolution.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
index 34cc7d9..092c96e 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs
@@ -8977,7 +8977,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
8977 if (handlerGodKickUser != null) 8977 if (handlerGodKickUser != null)
8978 { 8978 {
8979 handlerGodKickUser(gkupack.UserInfo.GodID, gkupack.UserInfo.GodSessionID, 8979 handlerGodKickUser(gkupack.UserInfo.GodID, gkupack.UserInfo.GodSessionID,
8980 gkupack.UserInfo.AgentID, (uint)0, gkupack.UserInfo.Reason); 8980 gkupack.UserInfo.AgentID, gkupack.UserInfo.KickFlags, gkupack.UserInfo.Reason);
8981 } 8981 }
8982 } 8982 }
8983 else 8983 else