Fix a casting subtlety in moving to constants. Logins should work

again.
ThreadPoolClientBranch
Sean Dague 2008-02-14 13:28:35 +00:00
parent 2d066c4136
commit 3a208a3a4f
1 changed files with 2 additions and 2 deletions

View File

@ -347,8 +347,8 @@ namespace OpenSim.Framework.UserManagement
responseData["home"] = home;
responseData["look_at"] = lookAt;
responseData["message"] = welcomeMessage;
responseData["region_x"] = (Int32)RegionX * Constants.RegionSize;
responseData["region_y"] = (Int32)RegionY * Constants.RegionSize;
responseData["region_x"] = (Int32)(RegionX * Constants.RegionSize);
responseData["region_y"] = (Int32)(RegionY * Constants.RegionSize);
//responseData["inventory-lib-root"] = new ArrayList(); // todo