|
@@ -260,7 +260,12 @@ namespace GFGGame
|
|
|
{
|
|
|
if (!MyDressUpHelper.CheckPutOnFinish(_dataManager.DressupList[i].itemList))
|
|
|
{
|
|
|
- AlertUI.Show("全部主题穿戴完整才能开始战斗哦!").SetRightButton(true, "好的");
|
|
|
+ AlertUI.Show("全部主题穿戴完整才能开始战斗哦!").
|
|
|
+ SetLeftButton(true, "取消").
|
|
|
+ SetRightButton(true, "去换装", (object param) =>
|
|
|
+ {
|
|
|
+ OnBtnDressClick();
|
|
|
+ });
|
|
|
return;
|
|
|
}
|
|
|
}
|
|
@@ -374,7 +379,7 @@ namespace GFGGame
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- _targetDressUpObj.PutOnSuitCfg(_targetData.FightDatas[0].showSuitId, false);
|
|
|
+ _targetDressUpObj.PutOnSuitCfg(_targetData.FightDatas[0].showSuitId, false, null, true, false);
|
|
|
}
|
|
|
}
|
|
|
}
|