...
This commit is contained in:
parent
8f5e16cfe5
commit
e8c9ef365f
|
|
@ -137,7 +137,8 @@ public class EquipmentPopup_Obtain : EquipmentPopupBase
|
|||
{
|
||||
// 장비 분해 처리
|
||||
var sdata = ServerInfo.Ins.m_ServerData;
|
||||
if (m_DecompAmount > 0 && sdata.Check_ItemAmount(m_Data.n_EquipID, m_DecompAmount))
|
||||
if (m_DecompAmount <= 0) { ToastUI.Ins.Set(999900018); return; }
|
||||
if (sdata.Check_ItemAmount(m_Data.n_EquipID, m_DecompAmount))
|
||||
{
|
||||
ServerInfo.Ins.Save_Equipment_Decomposition(m_Data.n_EquipID, m_DecompAmount, () =>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue