From 29fb93d2432249709de3c99940373e8acd692206 Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Mon, 19 May 2008 21:24:39 +0000 Subject: [PATCH] fix a constant that meant pants still weren't working. now you really can have pants. --- OpenSim/Framework/AvatarAppearance.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenSim/Framework/AvatarAppearance.cs b/OpenSim/Framework/AvatarAppearance.cs index 4611647c0d..676283c73e 100644 --- a/OpenSim/Framework/AvatarAppearance.cs +++ b/OpenSim/Framework/AvatarAppearance.cs @@ -145,8 +145,8 @@ namespace OpenSim.Framework set { m_wearables[PANTS].ItemID = value; } } public LLUUID PantsAsset { - get { return m_wearables[BODY].AssetID; } - set { m_wearables[BODY].AssetID = value; } + get { return m_wearables[PANTS].AssetID; } + set { m_wearables[PANTS].AssetID = value; } } public LLUUID ShoesItem { get { return m_wearables[SHOES].ItemID; }