|
@@ -71,21 +71,26 @@ namespace ET.Server
|
|
|
map.AddUnitPlayer(request.OpenId, newTemplateId, curObjId, unitPlayerData.Likes);
|
|
|
}
|
|
|
|
|
|
- // 推送客户端
|
|
|
- if (map.Player != null)
|
|
|
- {
|
|
|
- MessageHelper.SendToClient(map.Player, new G2C_LikeInfoPush{ TotalNum = map.TotalLikeNum, ConfigNum = configNum});
|
|
|
- }
|
|
|
-
|
|
|
// 点赞>=ConfigNum时, 通知战斗服
|
|
|
if (map.TotalLikeNum >= configNum)
|
|
|
{
|
|
|
+ // 设置总数
|
|
|
+ map.TotalLikeNum -= configNum;
|
|
|
+ map.ConfigNum += 1;
|
|
|
+
|
|
|
Struct.TriggerEventNotify notify = new Struct.TriggerEventNotify();
|
|
|
notify.message = BattleNotify.TiktokLike_energy.ToString();
|
|
|
notify.TriggerUnits = unitPlayerData.ObjId.ToString();
|
|
|
map.GetXmdsManager().notifyBattleServer(map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(notify));
|
|
|
}
|
|
|
|
|
|
+ // 推送客户端
|
|
|
+ if (map.Player != null)
|
|
|
+ {
|
|
|
+ long totalNum = map.ConfigNum * configNum + map.TotalLikeNum;
|
|
|
+ MessageHelper.SendToClient(map.Player, new G2C_LikeInfoPush{ TotalNum = totalNum, ConfigNum = configNum});
|
|
|
+ }
|
|
|
+
|
|
|
await ETTask.CompletedTask;
|
|
|
}
|
|
|
}
|