Răsfoiți Sursa

LocationProxyComponent中的AppId已经不需要

tanghai 7 ani în urmă
părinte
comite
cdc744a1f2

+ 0 - 1
Server/Hotfix/Module/Location/LocationProxyComponentSystem.cs

@@ -17,7 +17,6 @@ namespace ETHotfix
 		public static void Awake(this LocationProxyComponent self)
 		{
 			StartConfigComponent startConfigComponent = Game.Scene.GetComponent<StartConfigComponent>();
-			self.AppId = startConfigComponent.StartConfig.AppId;
 
 			StartConfig startConfig = startConfigComponent.LocationConfig;
 			self.LocationAddress = startConfig.GetComponent<InnerConfig>().IPEndPoint;

+ 0 - 2
Server/Model/Module/Location/LocationProxyComponent.cs

@@ -6,7 +6,5 @@ namespace ETModel
 	public class LocationProxyComponent : Component
 	{
 		public IPEndPoint LocationAddress;
-
-		public int AppId;
 	}
 }