mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
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:
parent
4fa6247672
commit
4694ca2580
1 changed files with 1 additions and 1 deletions
|
@ -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 );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue