This commit is contained in:
Ino 2025-07-04 09:32:14 +09:00
parent 8f5e16cfe5
commit e8c9ef365f
1 changed files with 2 additions and 1 deletions

View File

@ -137,7 +137,8 @@ public class EquipmentPopup_Obtain : EquipmentPopupBase
{ {
// 장비 분해 처리 // 장비 분해 처리
var sdata = ServerInfo.Ins.m_ServerData; 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, () => ServerInfo.Ins.Save_Equipment_Decomposition(m_Data.n_EquipID, m_DecompAmount, () =>
{ {