diff --git a/Api/Utility/Implement.cs b/Api/Utility/Implement.cs index bb94e1f..009c99f 100644 --- a/Api/Utility/Implement.cs +++ b/Api/Utility/Implement.cs @@ -59,8 +59,7 @@ namespace Milimoe.FunGame.Core.Api.Utility InterfaceMethod.RemoteServerIP => InterfaceSet.Method.RemoteServerIP, InterfaceMethod.DBConnection => InterfaceSet.Method.DBConnection, InterfaceMethod.GetServerSettings => InterfaceSet.Method.GetServerSettings, - InterfaceMethod.GameModuleList => InterfaceSet.Method.GameModuleList, - InterfaceMethod.GameMapList => InterfaceSet.Method.GameMapList, + InterfaceMethod.SecretKey => InterfaceSet.Method.SecretKey, _ => "" }; } diff --git a/Library/Constant/ConstantSet.cs b/Library/Constant/ConstantSet.cs index d4ea0df..e8bd7e7 100644 --- a/Library/Constant/ConstantSet.cs +++ b/Library/Constant/ConstantSet.cs @@ -19,8 +19,7 @@ namespace Milimoe.FunGame.Core.Library.Constant public const string RemoteServerIP = "RemoteServerIP"; public const string DBConnection = "DBConnection"; public const string GetServerSettings = "GetServerSettings"; - public const string GameModuleList = "GameModuleList"; - public const string GameMapList = "GameMapList"; + public const string SecretKey = "SecretKey"; } } diff --git a/Library/Constant/MethodEnum.cs b/Library/Constant/MethodEnum.cs index 432a240..4d95555 100644 --- a/Library/Constant/MethodEnum.cs +++ b/Library/Constant/MethodEnum.cs @@ -11,7 +11,6 @@ namespace Milimoe.FunGame.Core.Library.Constant RemoteServerIP, DBConnection, GetServerSettings, - GameModuleList, - GameMapList + SecretKey } }