diff options
author | Melanie Thielker | 2015-11-01 19:11:14 +0100 |
---|---|---|
committer | Melanie Thielker | 2015-11-01 19:11:14 +0100 |
commit | 69585a4824a7814bbe543d624de6c3627e0b927b (patch) | |
tree | 5d4bb6480906000f019c0d456939b24f5dfd8ab4 /OpenSim/Framework/AvatarWearable.cs | |
parent | Merge branch 'master' into avinationmerge (diff) | |
download | opensim-SC-69585a4824a7814bbe543d624de6c3627e0b927b.zip opensim-SC-69585a4824a7814bbe543d624de6c3627e0b927b.tar.gz opensim-SC-69585a4824a7814bbe543d624de6c3627e0b927b.tar.bz2 opensim-SC-69585a4824a7814bbe543d624de6c3627e0b927b.tar.xz |
More plumbing of the EntityTransferContext (not yet complete)
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/AvatarWearable.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Framework/AvatarWearable.cs b/OpenSim/Framework/AvatarWearable.cs index e662d5f..80ed77f 100644 --- a/OpenSim/Framework/AvatarWearable.cs +++ b/OpenSim/Framework/AvatarWearable.cs | |||
@@ -68,7 +68,7 @@ namespace OpenSim.Framework | |||
68 | public static readonly int ALPHA = 13; | 68 | public static readonly int ALPHA = 13; |
69 | public static readonly int TATTOO = 14; | 69 | public static readonly int TATTOO = 14; |
70 | 70 | ||
71 | public static readonly int MAX_WEARABLES = 15; | 71 | public static readonly int LEGACY_VERSION_MAX_WEARABLES = 15; |
72 | // public static readonly int PHYSICS = 15; | 72 | // public static readonly int PHYSICS = 15; |
73 | // public static int MAX_WEARABLES = 16; | 73 | // public static int MAX_WEARABLES = 16; |
74 | 74 | ||
@@ -225,8 +225,9 @@ namespace OpenSim.Framework | |||
225 | { | 225 | { |
226 | get | 226 | get |
227 | { | 227 | { |
228 | AvatarWearable[] defaultWearables = new AvatarWearable[MAX_WEARABLES]; | 228 | // We use the legacy count here because this is just a fallback anyway |
229 | for (int i = 0; i < MAX_WEARABLES; i++) | 229 | AvatarWearable[] defaultWearables = new AvatarWearable[LEGACY_VERSION_MAX_WEARABLES]; |
230 | for (int i = 0; i < LEGACY_VERSION_MAX_WEARABLES; i++) | ||
230 | { | 231 | { |
231 | defaultWearables[i] = new AvatarWearable(); | 232 | defaultWearables[i] = new AvatarWearable(); |
232 | } | 233 | } |