From 7d96a9e494696756c1b1bcfb434a5a5f9a4a1b37 Mon Sep 17 00:00:00 2001 From: xuexinpeng Date: Wed, 27 Oct 2021 18:30:51 +0800 Subject: [PATCH] =?UTF-8?q?6962=206963=E7=A4=BC=E5=8C=85=E5=BA=9F=E5=BC=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/ljsd/jieling/logic/store/BuyGoodsNewLogic.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/serverlogic/src/main/java/com/ljsd/jieling/logic/store/BuyGoodsNewLogic.java b/serverlogic/src/main/java/com/ljsd/jieling/logic/store/BuyGoodsNewLogic.java index ed17ad00d..3fb6c4863 100644 --- a/serverlogic/src/main/java/com/ljsd/jieling/logic/store/BuyGoodsNewLogic.java +++ b/serverlogic/src/main/java/com/ljsd/jieling/logic/store/BuyGoodsNewLogic.java @@ -636,6 +636,9 @@ public class BuyGoodsNewLogic { boolean needChange = refreshWelfareState(user); NewRechargeInfo rechargeInfo = user.getPlayerInfoManager().getNewRechargeInfo(); for(AbstractWelfareBag bag : rechargeInfo.getPerpetualMap().values()){ + if(bag.getModId() == 6962 || bag.getModId() == 6963){ + continue; + } if(bag.isOpen()){ giftGoodsInfoList.add(buildGoodsInfo(bag)); } @@ -646,11 +649,17 @@ public class BuyGoodsNewLogic { } } for(AbstractWelfareBag bag : rechargeInfo.getReceiveMap().values()){ + if(bag.getModId() == 6962 || bag.getModId() == 6963){ + continue; + } if(bag.isOpen()){ giftGoodsInfoList.add(buildGoodsInfo(bag)); } } for(AbstractWelfareBag bag : rechargeInfo.getPushMap().values()){ + if(bag.getModId() == 6962 || bag.getModId() == 6963){ + continue; + } if(bag.isOpen()){ giftGoodsInfoList.add(buildGoodsInfo(bag)); }