mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Colors are on 3 bits (colors goes from 0 to 7) so 254 was converted to 6 (white)
This commit is contained in:
parent
f05fd1f4e2
commit
20dac0bdf9
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