Parcourir la source

【游戏服】修复用甜甜圈升级后,玩家名字会丢失的问题

大爷 il y a 1 an
Parent
commit
b4ec7a38bc
2 fichiers modifiés avec 4 ajouts et 4 suppressions
  1. 3 3
      DotNet/Hotfix/Scenes/Game/Map/MapSystem.cs
  2. 1 1
      DotNet/Model/Const/Struct.cs

+ 3 - 3
DotNet/Hotfix/Scenes/Game/Map/MapSystem.cs

@@ -360,7 +360,7 @@ namespace ET.Server
                 unit.y = y;
             }
             unit.autoGuard = true;
-            unit.name = name;
+            unit.uuid = name;
             unit.alias = url;
 
             int objId = await self.AddUnits(unit, true);
@@ -369,8 +369,8 @@ namespace ET.Server
                 OpenId = openId,
                 TemplateId = templateId,
                 ObjId = objId,
-                Name = unit.name,
-                Url = unit.alias,
+                Name = name,
+                Url = url,
                 Level = 1,
                 Likes = 0,
                 ReliveTime = 0,

+ 1 - 1
DotNet/Model/Const/Struct.cs

@@ -139,7 +139,7 @@
         public class MonsterUnit
         {
             /** 怪物名字 **/
-            public string name { get; set; }
+            public string uuid { get; set; }
             public string alias { get; set; }
 
             /** 怪物模板ID **/