diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Services/Interfaces/IAvatarService.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IAvatarService.cs b/OpenSim/Services/Interfaces/IAvatarService.cs index 0caa521..260e1c6 100644 --- a/OpenSim/Services/Interfaces/IAvatarService.cs +++ b/OpenSim/Services/Interfaces/IAvatarService.cs | |||
@@ -201,7 +201,8 @@ namespace OpenSim.Services.Interfaces | |||
201 | appearance.Serial = Int32.Parse(Data["Serial"]); | 201 | appearance.Serial = Int32.Parse(Data["Serial"]); |
202 | 202 | ||
203 | if (Data.ContainsKey("AvatarHeight")) | 203 | if (Data.ContainsKey("AvatarHeight")) |
204 | appearance.AvatarHeight = float.Parse(Data["AvatarHeight"]); | 204 | appearance.SetSize(new Vector3(0.45f, 0.6f, float.Parse(Data["AvatarHeight"]))); |
205 | // appearance.AvatarHeight = float.Parse(Data["AvatarHeight"]); | ||
205 | 206 | ||
206 | // Legacy Wearables | 207 | // Legacy Wearables |
207 | if (Data.ContainsKey("BodyItem")) | 208 | if (Data.ContainsKey("BodyItem")) |
@@ -339,6 +340,7 @@ namespace OpenSim.Services.Interfaces | |||
339 | appearance.Wearables[AvatarWearable.EYES].Wear( | 340 | appearance.Wearables[AvatarWearable.EYES].Wear( |
340 | AvatarWearable.DefaultWearables[ | 341 | AvatarWearable.DefaultWearables[ |
341 | AvatarWearable.EYES][0]); | 342 | AvatarWearable.EYES][0]); |
343 | |||
342 | } | 344 | } |
343 | catch | 345 | catch |
344 | { | 346 | { |