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

--HG--
branch : develop
hg/feature/material-editor
kervala 9 years ago
parent 4fa6247672
commit 4694ca2580

@ -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…
Cancel
Save