mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 01:06:30 +08:00
Fix a casting subtlety in moving to constants. Logins should work
again.
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user