Make sure m_StackSizeToBeUsedInRepair Always has a valid value
This commit is contained in:
parent
85be62a8cd
commit
98c575ebc2
@ -625,7 +625,8 @@ void cSlotAreaCrafting::HandleCraftItem(const cItem & a_Result, cPlayer & a_Play
|
||||
|
||||
cSlotAreaAnvil::cSlotAreaAnvil(cAnvilWindow & a_ParentWindow) :
|
||||
cSlotAreaTemporary(3, a_ParentWindow),
|
||||
m_MaximumCost(0)
|
||||
m_MaximumCost(0),
|
||||
m_StackSizeToBeUsedInRepair(0);
|
||||
{
|
||||
}
|
||||
|
||||
@ -796,6 +797,7 @@ void cSlotAreaAnvil::OnTakeResult(cPlayer & a_Player)
|
||||
{
|
||||
cItem NewSecondItem(*Item);
|
||||
NewSecondItem.m_ItemCount -= m_StackSizeToBeUsedInRepair;
|
||||
m_StackSizeToBeUsedInRepair = 0;
|
||||
SetSlot(1, a_Player, NewSecondItem);
|
||||
}
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user