mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
Make regions tolerant to newer regions with more werables.
Also, bump the interface version to 8
This commit is contained in:
@@ -458,8 +458,11 @@ namespace OpenSim.Framework
|
||||
// m_log.WarnFormat("[AVATARAPPEARANCE] set wearable {0} --> {1}:{2}",wearableId,wearable.ItemID,wearable.AssetID);
|
||||
// DEBUG OFF
|
||||
m_wearables[wearableId].Clear();
|
||||
for (int i = 0; i < wearable.Count; i++)
|
||||
m_wearables[wearableId].Add(wearable[i].ItemID, wearable[i].AssetID);
|
||||
int count = wearable.Count;
|
||||
if (count > AvatarWearable.MAX_WEARABLES)
|
||||
count = AvatarWearable.MAX_WEARABLES;
|
||||
for (int i = 0; i < count; i++)
|
||||
m_wearables[wearableId].Add(wearable[i].ItemID, wearable[i].AssetID);
|
||||
}
|
||||
|
||||
// DEBUG ON
|
||||
|
||||
@@ -71,6 +71,6 @@ namespace OpenSim
|
||||
/// of the code that is too old.
|
||||
///
|
||||
/// </value>
|
||||
public readonly static int MajorInterfaceVersion = 7;
|
||||
public readonly static int MajorInterfaceVersion = 8;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user