diff --git a/common/constant.go b/common/constant.go index 21442dc..61e7f99 100644 --- a/common/constant.go +++ b/common/constant.go @@ -272,7 +272,7 @@ const ( GainWayBuyItem = 86 // 商城购买道具 GainWayBuyWeekCard = 87 // 商城购买周卡 GainWayVipBuyCoin = 88 // vip商城购买金币 - GainWaySign7 = 89 // 连续签到7天进阶消耗 + GainWaySign7 = 89 // 累计签到进阶奖励 GainWay_PigrankGainDiamond = 90 //存钱罐打开获取钻石 ) diff --git a/worldsrv/welfmgr.go b/worldsrv/welfmgr.go index 2289a17..df84185 100644 --- a/worldsrv/welfmgr.go +++ b/worldsrv/welfmgr.go @@ -858,7 +858,7 @@ func (this *WelfareMgr) GetAddUp2Award(p *Player, day int32) { items = append(items, item) } } - BagMgrSingleton.AddItems(p, items, 0, common.GainWaySign7, "system", "累计签到进阶奖励钻石消耗", 0, 0, false) + BagMgrSingleton.AddItems(p, items, 0, common.GainWaySign7, "system", "累计签到进阶奖励获得", 0, 0, false) } //通知客户端 this.UpdateAddUp2Date(p, Num, day, EndTime)