diff options
author | Justin Clark-Casey (justincc) | 2010-02-05 19:34:25 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-02-05 19:34:25 +0000 |
commit | bf9fc69d017e9179b32cb7fde3374264f5c1ea8d (patch) | |
tree | 50dcd9f5fa1443a30dd4120c5cbe01d52f2749f2 /OpenSim/Region/CoreModules | |
parent | Revert "Old OpenSim installations may have no AssetCaching setting in config-... (diff) | |
download | opensim-SC_OLD-bf9fc69d017e9179b32cb7fde3374264f5c1ea8d.zip opensim-SC_OLD-bf9fc69d017e9179b32cb7fde3374264f5c1ea8d.tar.gz opensim-SC_OLD-bf9fc69d017e9179b32cb7fde3374264f5c1ea8d.tar.bz2 opensim-SC_OLD-bf9fc69d017e9179b32cb7fde3374264f5c1ea8d.tar.xz |
minor: log what kind of wearable cannot be found
Diffstat (limited to 'OpenSim/Region/CoreModules')
-rw-r--r-- | OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs index 35c59aa..144c8d1 100644 --- a/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs +++ b/OpenSim/Region/CoreModules/Avatar/AvatarFactory/AvatarFactoryModule.cs | |||
@@ -115,7 +115,6 @@ namespace OpenSim.Region.CoreModules.Avatar.AvatarFactory | |||
115 | // client.OnAvatarNowWearing -= AvatarIsWearing; | 115 | // client.OnAvatarNowWearing -= AvatarIsWearing; |
116 | } | 116 | } |
117 | 117 | ||
118 | |||
119 | public void SetAppearanceAssets(UUID userID, ref AvatarAppearance appearance) | 118 | public void SetAppearanceAssets(UUID userID, ref AvatarAppearance appearance) |
120 | { | 119 | { |
121 | IInventoryService invService = m_scene.InventoryService; | 120 | IInventoryService invService = m_scene.InventoryService; |
@@ -139,7 +138,10 @@ namespace OpenSim.Region.CoreModules.Avatar.AvatarFactory | |||
139 | } | 138 | } |
140 | else | 139 | else |
141 | { | 140 | { |
142 | m_log.ErrorFormat("[APPEARANCE]: Can't find inventory item {0}, setting to default", appearance.Wearables[i].ItemID); | 141 | m_log.ErrorFormat( |
142 | "[APPEARANCE]: Can't find inventory item {0} for {1}, setting to default", | ||
143 | appearance.Wearables[i].ItemID, (WearableType)i); | ||
144 | |||
143 | appearance.Wearables[i].AssetID = def.Wearables[i].AssetID; | 145 | appearance.Wearables[i].AssetID = def.Wearables[i].AssetID; |
144 | } | 146 | } |
145 | } | 147 | } |