diff options
author | John Hurliman | 2010-09-29 14:34:02 -0700 |
---|---|---|
committer | John Hurliman | 2010-09-29 14:34:02 -0700 |
commit | b6e0563ad7ad7f6fc396229823d7e76cd31dced7 (patch) | |
tree | 27c0549dbd94e43fbffe7b057487e7e7b6fb3d5d /OpenSim/Server/Handlers/GridUser | |
parent | Made IGridUserService.SetLastPosition() more flexible to allow different poss... (diff) | |
download | opensim-SC_OLD-b6e0563ad7ad7f6fc396229823d7e76cd31dced7.zip opensim-SC_OLD-b6e0563ad7ad7f6fc396229823d7e76cd31dced7.tar.gz opensim-SC_OLD-b6e0563ad7ad7f6fc396229823d7e76cd31dced7.tar.bz2 opensim-SC_OLD-b6e0563ad7ad7f6fc396229823d7e76cd31dced7.tar.xz |
Part two of the previous commit, making IGridUserService.LoggedOut() more flexible without changing current behavior
Diffstat (limited to 'OpenSim/Server/Handlers/GridUser')
-rw-r--r-- | OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs b/OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs index 6b14a52..485bc3e 100644 --- a/OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs +++ b/OpenSim/Server/Handlers/GridUser/GridUserServerPostHandler.cs | |||
@@ -131,7 +131,7 @@ namespace OpenSim.Server.Handlers.GridUser | |||
131 | if (!UnpackArgs(request, out userID, out regionID, out position, out lookat)) | 131 | if (!UnpackArgs(request, out userID, out regionID, out position, out lookat)) |
132 | return FailureResult(); | 132 | return FailureResult(); |
133 | 133 | ||
134 | if (m_GridUserService.LoggedOut(userID, regionID, position, lookat)) | 134 | if (m_GridUserService.LoggedOut(userID, UUID.Zero, regionID, position, lookat)) |
135 | return SuccessResult(); | 135 | return SuccessResult(); |
136 | 136 | ||
137 | return FailureResult(); | 137 | return FailureResult(); |