Browse Source

【优化】点赞数满1000时, 减掉数量重新累加

johnclot69 1 year ago
parent
commit
a480dc6f6d

+ 11 - 6
DotNet/Hotfix/Scenes/Game/Handler/R2G_AddLevelHandler.cs

@@ -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;
         }
     }

+ 2 - 0
DotNet/Model/Scenes/Game/Map/Map.cs

@@ -31,6 +31,8 @@ namespace ET.Server
         public Dictionary<string, Struct.UnitPlayerData> UnitPlayers { get; set; }
         /** 总点赞数 **/
         public long TotalLikeNum { get; set; }
+        /** 配置数量达到次数 **/
+        public long ConfigNum { get; set; }
 
         /** 死亡的单位(塔) **/
         [StaticField]