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

This commit is contained in:
kervala 2015-12-23 15:28:33 +01:00
parent f05fd1f4e2
commit 20dac0bdf9

View file

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