소스 검색

【优化】发送消息到游戏服,objId字符串格式

johnclot69 1 년 전
부모
커밋
1ead2afcb1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Common/CommonAI/Zone/ZoneEditor/EventTrigger/Actions.Zone.cs

+ 1 - 1
Common/CommonAI/Zone/ZoneEditor/EventTrigger/Actions.Zone.cs

@@ -263,7 +263,7 @@ namespace CommonAI.Zone.ZoneEditor.EventTrigger
                     {
                         return;
                     }
-                    msg = msg.Replace("objid", $"{unit.get_id()}");
+                    msg = msg.Replace("{objid}", $"{unit.get_id()}");
                 }
                 api.ZoneAPI.SendMessageToGameServer(msg);
             }