点将台10连加入红点提示 2

dev_chengFeng
zhangqiang 2021-06-01 20:10:34 +08:00
parent 1c19adf8ca
commit f9af054ec6
2 changed files with 2 additions and 1 deletions

View File

@ -1098,6 +1098,7 @@ function this.BagIndicationRefresh(msg)
--检测背包红点
CheckRedPointStatus(RedPointType.Bag_HeroDebris)
CheckRedPointStatus(RedPointType.Bag_BoxAndBlueprint)
CheckRedPointStatus(RedPointType.Recruit_Normal)
-- 超出最大数量限制提示
if msg.isMax and msg.isMax == 1 then

View File

@ -403,7 +403,7 @@ function this.GetRecruitBtnRedpoint(recruitType,privilegeId)--privilegeId 单
local data = RecruitManager.GetExpendData(recruitType)
local itemId = data[1]
local itemNum = data[2]
if BagManager.GetItemCountById(itemId) >= itemNum then
if itemId ~= 16 and BagManager.GetItemCountById(itemId) >= itemNum then--itemId ~= 16 妖精不算
return true
end
end