Fixed: Colors are on 3 bits (colors goes from 0 to 7) so 254 was converted to 6 (white)

--HG--
branch : develop
This commit is contained in:
kervala 2015-12-23 15:28:33 +01:00
parent 4fa6247672
commit 4694ca2580

View file

@ -4880,7 +4880,7 @@ void CCharacter::updateVisualInformation( uint16 InventoryEmpty, uint16 SlotEmpt
}
// update visual property only if srcForm is valid
if(srcForm)
setVisualPropertyForEquipment( SlotEmpty, srcForm, 0 , 254 );
setVisualPropertyForEquipment( SlotEmpty, srcForm, 0 , 6 );
}
}