diff options
Diffstat (limited to 'OpenSim/Region/Communications/Local/LocalUserServices.cs')
-rw-r--r-- | OpenSim/Region/Communications/Local/LocalUserServices.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Communications/Local/LocalUserServices.cs b/OpenSim/Region/Communications/Local/LocalUserServices.cs index 6cf254b..5a2a5c8 100644 --- a/OpenSim/Region/Communications/Local/LocalUserServices.cs +++ b/OpenSim/Region/Communications/Local/LocalUserServices.cs | |||
@@ -69,14 +69,14 @@ namespace OpenSim.Region.Communications.Local | |||
69 | return profile; | 69 | return profile; |
70 | } | 70 | } |
71 | 71 | ||
72 | public override bool AuthenticateUser(ref UserProfileData profile, string password) | 72 | public override bool AuthenticateUser(UserProfileData profile, string password) |
73 | { | 73 | { |
74 | //for now we will accept any password in sandbox mode | 74 | //for now we will accept any password in sandbox mode |
75 | Console.WriteLine("authorising user"); | 75 | Console.WriteLine("authorising user"); |
76 | return true; | 76 | return true; |
77 | } | 77 | } |
78 | 78 | ||
79 | public override void CustomiseResponse(ref LoginResponse response, ref UserProfileData theUser) | 79 | public override void CustomiseResponse(LoginResponse response, UserProfileData theUser) |
80 | { | 80 | { |
81 | ulong currentRegion = theUser.currentAgent.currentHandle; | 81 | ulong currentRegion = theUser.currentAgent.currentHandle; |
82 | RegionInfo reg = m_Parent.GridServer.RequestNeighbourInfo(currentRegion); | 82 | RegionInfo reg = m_Parent.GridServer.RequestNeighbourInfo(currentRegion); |