mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Changed: Simplified code
--HG-- branch : develop
This commit is contained in:
parent
f04ebac483
commit
c0a3345c83
1 changed files with 4 additions and 6 deletions
|
@ -634,12 +634,10 @@ void CPlayerCL::equip(SLOTTYPE::EVisualSlot slot, uint index, uint color)
|
|||
{
|
||||
if(SheetMngr.getItem(slot, (uint)idx))
|
||||
{
|
||||
// If the gender is a female get the right shape.
|
||||
if(_Gender == GSGENDER::female)
|
||||
equip(slot, SheetMngr.getItem(slot, (uint)idx)->getShapeFemale());
|
||||
// Else get the default shape.
|
||||
else
|
||||
equip(slot, SheetMngr.getItem(slot, (uint)idx)->getShape());
|
||||
const CItemSheet *itemSheet = SheetMngr.getItem(slot, (uint)idx);
|
||||
|
||||
// If the gender is a female get the right shape else get the default shape.
|
||||
equip(slot, _Gender == GSGENDER::female ? itemSheet->getShapeFemale():itemSheet->getShape());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue