|
@@ -40,11 +40,11 @@ namespace ET.Server
|
|
|
/// </summary>
|
|
|
/// <param name="self"></param>
|
|
|
/// <param name="msg"></param>
|
|
|
- public static void OnMessage(this MapEventComponent self, JObject json)
|
|
|
+ public static void OnMessage(this MapEventComponent self, JObject msg)
|
|
|
{
|
|
|
- string msg = Convert.ToString(json.SelectToken("msg"));
|
|
|
+ string str = Convert.ToString(msg.SelectToken("msg"));
|
|
|
|
|
|
- string[] parames = msg.Split(":");
|
|
|
+ string[] parames = str.Split(":");
|
|
|
|
|
|
switch (parames[0])
|
|
|
{
|
|
@@ -52,7 +52,9 @@ namespace ET.Server
|
|
|
{
|
|
|
if ("Tower1".Equals(parames[1]))
|
|
|
{
|
|
|
-
|
|
|
+ Log.Debug($"塔1死亡事件...");
|
|
|
+ self.GetParent<Map>().DeadUnits.Add(1001);
|
|
|
+ self.TransferUnitsToNewTower();
|
|
|
return;
|
|
|
}
|
|
|
else if ("Tower2".Equals(parames[1]))
|