From 1d9993a1f0aec01d83497193300986691361ece9 Mon Sep 17 00:00:00 2001 From: SnowShow Date: Tue, 8 Apr 2025 18:02:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=B9=BF=E6=92=AD=E5=8D=8F?= =?UTF-8?q?=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Utility/New/Image/ImageUtility.cs | 2 +- .../Generate/NetworkProtocol/OuterMessage.cs | 43 ++++++++++++++++++ .../Generate/NetworkProtocol/OuterOpcode.cs | 10 ++-- .../NetworkProtocol/Inner/InnerMessage.proto | 4 ++ .../NetworkProtocol/Outer/OuterMessage.proto | 15 +++++- .../obj/Debug/net9.0/APlugins.AssemblyInfo.cs | 2 +- .../net9.0/APlugins.AssemblyInfoInputs.cache | 2 +- .../obj/rider.project.model.nuget.info | 2 +- .../APlugins/obj/rider.project.restore.info | 2 +- .../Generate/NetworkProtocol/InnerMessage.cs | 18 ++++++++ .../Generate/NetworkProtocol/InnerOpcode.cs | 5 +- .../Generate/NetworkProtocol/OuterMessage.cs | 43 ++++++++++++++++++ .../Generate/NetworkProtocol/OuterOpcode.cs | 10 ++-- .../obj/Debug/net9.0/Entity.AssemblyInfo.cs | 2 +- .../net9.0/Entity.AssemblyInfoInputs.cache | 2 +- .../Entity.csproj.AssemblyReference.cache | Bin 8662 -> 8542 bytes .../Entity/obj/rider.project.model.nuget.info | 2 +- .../Entity/obj/rider.project.restore.info | 2 +- .../Hotfix/Outter/Chat/Helper/ChatHelper.cs | 27 +++++++++++ .../obj/Debug/net9.0/Hotfix.AssemblyInfo.cs | 2 +- .../net9.0/Hotfix.AssemblyInfoInputs.cache | 2 +- .../Hotfix.csproj.AssemblyReference.cache | Bin 9686 -> 8771 bytes .../Hotfix/obj/rider.project.model.nuget.info | 2 +- .../Hotfix/obj/rider.project.restore.info | 2 +- .../obj/Debug/net9.0/Main.AssemblyInfo.cs | 2 +- .../net9.0/Main.AssemblyInfoInputs.cache | 2 +- .../Main.csproj.AssemblyReference.cache | Bin 11535 -> 9662 bytes .../Main/obj/rider.project.model.nuget.info | 2 +- .../Main/obj/rider.project.restore.info | 2 +- 29 files changed, 180 insertions(+), 29 deletions(-) create mode 100644 GameServer/Server/Hotfix/Outter/Chat/Helper/ChatHelper.cs diff --git a/EintooAR/Assets/GameScripts/HotFix/GameLogic/AR Brochure/Utility/New/Image/ImageUtility.cs b/EintooAR/Assets/GameScripts/HotFix/GameLogic/AR Brochure/Utility/New/Image/ImageUtility.cs index a4f378cc..a65fefcd 100644 --- a/EintooAR/Assets/GameScripts/HotFix/GameLogic/AR Brochure/Utility/New/Image/ImageUtility.cs +++ b/EintooAR/Assets/GameScripts/HotFix/GameLogic/AR Brochure/Utility/New/Image/ImageUtility.cs @@ -35,7 +35,7 @@ namespace GameLogic url = url.Substring(0, queryIndex); // 获取URL中的文件名部分 - string fileName = Path.GetFileName(url); + string fileName = Path.GetFileNameWithoutExtension(url); return fileName; } catch (Exception ex) diff --git a/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterMessage.cs b/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterMessage.cs index f970cb53..97a9543d 100644 --- a/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterMessage.cs +++ b/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterMessage.cs @@ -288,6 +288,49 @@ namespace Fantasy public uint ErrorCode { get; set; } } [ProtoContract] + public partial class C2Chat_BoardMessageRequest : AMessage, ICustomRouteRequest, IProto + { + public static C2Chat_BoardMessageRequest Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + [ProtoIgnore] + public Chat2C_BoardMessageResponse ResponseType { get; set; } + public uint OpCode() { return OuterOpcode.C2Chat_BoardMessageRequest; } + [ProtoIgnore] + public int RouteType => Fantasy.RouteType.ChatRoute; + [ProtoMember(1)] + public string Message { get; set; } + } + [ProtoContract] + public partial class Chat2C_BoardMessageResponse : AMessage, ICustomRouteResponse, IProto + { + public static Chat2C_BoardMessageResponse Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + ErrorCode = default; + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + public uint OpCode() { return OuterOpcode.Chat2C_BoardMessageResponse; } + [ProtoMember(1)] + public string Message { get; set; } + [ProtoMember(2)] + public uint ErrorCode { get; set; } + } + [ProtoContract] public partial class C2Chat_TestRequest : AMessage, ICustomRouteRequest, IProto { public static C2Chat_TestRequest Create(Scene scene) diff --git a/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterOpcode.cs b/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterOpcode.cs index 999b5336..5669740c 100644 --- a/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterOpcode.cs +++ b/EintooAR/Assets/GameScripts/HotFix/GameLogic/RPG/GameProtocol/Server/Generate/NetworkProtocol/OuterOpcode.cs @@ -14,8 +14,10 @@ namespace Fantasy public const uint G2C_OpenGameNameInputWindowsMessage = 134227730; public const uint C2G_UpdateAndSaveGameNameRequest = 268445461; public const uint G2C_UpdateAndSaveGameNameResponse = 402663189; - public const uint C2Chat_TestRequest = 2281711377; - public const uint Chat2C_TestResponse = 2415929105; + public const uint C2Chat_BoardMessageRequest = 2281711377; + public const uint Chat2C_BoardMessageResponse = 2415929105; + public const uint C2Chat_TestRequest = 2281711378; + public const uint Chat2C_TestResponse = 2415929106; public const uint C2G_TestMessage = 134227731; public const uint C2G_TestRequest = 268445462; public const uint G2C_TestResponse = 402663190; @@ -29,8 +31,8 @@ namespace Fantasy public const uint C2G_CreateChatRouteRequest = 268445464; public const uint G2C_CreateChatRouteResponse = 402663192; public const uint C2Chat_TestMessage = 2147493649; - public const uint C2Chat_TestMessageRequest = 2281711378; - public const uint Chat2C_TestMessageResponse = 2415929106; + public const uint C2Chat_TestMessageRequest = 2281711379; + public const uint Chat2C_TestMessageResponse = 2415929107; public const uint C2M_MoveToMapRequest = 1476405010; public const uint M2C_MoveToMapResponse = 1610622738; public const uint C2G_SendAddressableToMap = 134227734; diff --git a/GameServer/Config/NetworkProtocol/Inner/InnerMessage.proto b/GameServer/Config/NetworkProtocol/Inner/InnerMessage.proto index c02a092f..da9a5f11 100644 --- a/GameServer/Config/NetworkProtocol/Inner/InnerMessage.proto +++ b/GameServer/Config/NetworkProtocol/Inner/InnerMessage.proto @@ -24,6 +24,10 @@ message Chat2G_OfflineResponse // IRouteResponse } +message Chat2G_BoardMessage // IRouteMessage +{ + string Message = 1; +} diff --git a/GameServer/Config/NetworkProtocol/Outer/OuterMessage.proto b/GameServer/Config/NetworkProtocol/Outer/OuterMessage.proto index 184e3176..6db6532b 100644 --- a/GameServer/Config/NetworkProtocol/Outer/OuterMessage.proto +++ b/GameServer/Config/NetworkProtocol/Outer/OuterMessage.proto @@ -87,6 +87,19 @@ message G2C_UpdateAndSaveGameNameResponse //IResponse } //chat + +message C2Chat_BoardMessageRequest //ICustomRouteRequest,Chat2C_BoardMessageResponse,ChatRoute +{ + string Message = 1; +} +message Chat2C_BoardMessageResponse //ICustomRouteResponse +{ + string Message = 2; +} + + + + message C2Chat_TestRequest // ICustomRouteRequest,Chat2C_TestResponse,ChatRoute { @@ -104,8 +117,6 @@ message Chat2C_TestResponse // ICustomRouteResponse - - message C2G_TestMessage // IMessage { string Tag = 1; diff --git a/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfo.cs b/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfo.cs index 31594b75..8cfbce26 100644 --- a/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfo.cs +++ b/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("APlugins")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f380af99fa15e1e6045b8a02edffb583f97f5687")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+44d9249c1b3de281ff1e2af3b67b2562b4043873")] [assembly: System.Reflection.AssemblyProductAttribute("APlugins")] [assembly: System.Reflection.AssemblyTitleAttribute("APlugins")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfoInputs.cache b/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfoInputs.cache index b12aaa11..ef72ae11 100644 --- a/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfoInputs.cache +++ b/GameServer/Server/APlugins/obj/Debug/net9.0/APlugins.AssemblyInfoInputs.cache @@ -1 +1 @@ -663dff072fc30ff85d5379c5036bccd2b2b51c8d3c02d4ba306b5a8634571881 +c19c21424af3bd461148be8c06a7339355b918e00fe472e5a6c66ccd6d8e6266 diff --git a/GameServer/Server/APlugins/obj/rider.project.model.nuget.info b/GameServer/Server/APlugins/obj/rider.project.model.nuget.info index 4093e9de..8e22ca0d 100644 --- a/GameServer/Server/APlugins/obj/rider.project.model.nuget.info +++ b/GameServer/Server/APlugins/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17435554619246633 \ No newline at end of file +17436510677070484 \ No newline at end of file diff --git a/GameServer/Server/APlugins/obj/rider.project.restore.info b/GameServer/Server/APlugins/obj/rider.project.restore.info index fa8f98c9..c2c970d1 100644 --- a/GameServer/Server/APlugins/obj/rider.project.restore.info +++ b/GameServer/Server/APlugins/obj/rider.project.restore.info @@ -1 +1 @@ -17435661846531578 \ No newline at end of file +17441036760466245 \ No newline at end of file diff --git a/GameServer/Server/Entity/Generate/NetworkProtocol/InnerMessage.cs b/GameServer/Server/Entity/Generate/NetworkProtocol/InnerMessage.cs index 4983cd9c..5214065c 100644 --- a/GameServer/Server/Entity/Generate/NetworkProtocol/InnerMessage.cs +++ b/GameServer/Server/Entity/Generate/NetworkProtocol/InnerMessage.cs @@ -100,6 +100,24 @@ namespace Fantasy public uint ErrorCode { get; set; } } [ProtoContract] + public partial class Chat2G_BoardMessage : AMessage, IRouteMessage, IProto + { + public static Chat2G_BoardMessage Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + public uint OpCode() { return InnerOpcode.Chat2G_BoardMessage; } + [ProtoMember(1)] + public string Message { get; set; } + } + [ProtoContract] public partial class G2A_TestMessage : AMessage, IRouteMessage, IProto { public static G2A_TestMessage Create(Scene scene) diff --git a/GameServer/Server/Entity/Generate/NetworkProtocol/InnerOpcode.cs b/GameServer/Server/Entity/Generate/NetworkProtocol/InnerOpcode.cs index cd2d78f5..1abaea6a 100644 --- a/GameServer/Server/Entity/Generate/NetworkProtocol/InnerOpcode.cs +++ b/GameServer/Server/Entity/Generate/NetworkProtocol/InnerOpcode.cs @@ -6,7 +6,8 @@ namespace Fantasy public const uint Chat2G_LoginResponse = 1207969553; public const uint G2Chat_OfflineRequest = 1073751826; public const uint Chat2G_OfflineResponse = 1207969554; - public const uint G2A_TestMessage = 939534097; + public const uint Chat2G_BoardMessage = 939534097; + public const uint G2A_TestMessage = 939534098; public const uint G2A_TestRequest = 1073751827; public const uint G2A_TestResponse = 1207969555; public const uint G2M_RequestAddressableId = 1073751828; @@ -18,7 +19,7 @@ namespace Fantasy public const uint G2M_SendAddressableMessage = 1744840465; public const uint G2M_CreateSubSceneRequest = 1073751831; public const uint M2G_CreateSubSceneResponse = 1207969559; - public const uint G2SubScene_SentMessage = 939534098; + public const uint G2SubScene_SentMessage = 939534099; public const uint G2SubScene_AddressableIdRequest = 1073751832; public const uint SubScene2G_AddressableIdResponse = 1207969560; } diff --git a/GameServer/Server/Entity/Generate/NetworkProtocol/OuterMessage.cs b/GameServer/Server/Entity/Generate/NetworkProtocol/OuterMessage.cs index 410d01d4..77d23cd0 100644 --- a/GameServer/Server/Entity/Generate/NetworkProtocol/OuterMessage.cs +++ b/GameServer/Server/Entity/Generate/NetworkProtocol/OuterMessage.cs @@ -297,6 +297,49 @@ namespace Fantasy public uint ErrorCode { get; set; } } [ProtoContract] + public partial class C2Chat_BoardMessageRequest : AMessage, ICustomRouteRequest, IProto + { + public static C2Chat_BoardMessageRequest Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + [ProtoIgnore] + public Chat2C_BoardMessageResponse ResponseType { get; set; } + public uint OpCode() { return OuterOpcode.C2Chat_BoardMessageRequest; } + [ProtoIgnore] + public int RouteType => Fantasy.RouteType.ChatRoute; + [ProtoMember(1)] + public string Message { get; set; } + } + [ProtoContract] + public partial class Chat2C_BoardMessageResponse : AMessage, ICustomRouteResponse, IProto + { + public static Chat2C_BoardMessageResponse Create(Scene scene) + { + return scene.MessagePoolComponent.Rent(); + } + public override void Dispose() + { + ErrorCode = default; + Message = default; +#if FANTASY_NET || FANTASY_UNITY + GetScene().MessagePoolComponent.Return(this); +#endif + } + public uint OpCode() { return OuterOpcode.Chat2C_BoardMessageResponse; } + [ProtoMember(1)] + public string Message { get; set; } + [ProtoMember(2)] + public uint ErrorCode { get; set; } + } + [ProtoContract] public partial class C2Chat_TestRequest : AMessage, ICustomRouteRequest, IProto { public static C2Chat_TestRequest Create(Scene scene) diff --git a/GameServer/Server/Entity/Generate/NetworkProtocol/OuterOpcode.cs b/GameServer/Server/Entity/Generate/NetworkProtocol/OuterOpcode.cs index 999b5336..5669740c 100644 --- a/GameServer/Server/Entity/Generate/NetworkProtocol/OuterOpcode.cs +++ b/GameServer/Server/Entity/Generate/NetworkProtocol/OuterOpcode.cs @@ -14,8 +14,10 @@ namespace Fantasy public const uint G2C_OpenGameNameInputWindowsMessage = 134227730; public const uint C2G_UpdateAndSaveGameNameRequest = 268445461; public const uint G2C_UpdateAndSaveGameNameResponse = 402663189; - public const uint C2Chat_TestRequest = 2281711377; - public const uint Chat2C_TestResponse = 2415929105; + public const uint C2Chat_BoardMessageRequest = 2281711377; + public const uint Chat2C_BoardMessageResponse = 2415929105; + public const uint C2Chat_TestRequest = 2281711378; + public const uint Chat2C_TestResponse = 2415929106; public const uint C2G_TestMessage = 134227731; public const uint C2G_TestRequest = 268445462; public const uint G2C_TestResponse = 402663190; @@ -29,8 +31,8 @@ namespace Fantasy public const uint C2G_CreateChatRouteRequest = 268445464; public const uint G2C_CreateChatRouteResponse = 402663192; public const uint C2Chat_TestMessage = 2147493649; - public const uint C2Chat_TestMessageRequest = 2281711378; - public const uint Chat2C_TestMessageResponse = 2415929106; + public const uint C2Chat_TestMessageRequest = 2281711379; + public const uint Chat2C_TestMessageResponse = 2415929107; public const uint C2M_MoveToMapRequest = 1476405010; public const uint M2C_MoveToMapResponse = 1610622738; public const uint C2G_SendAddressableToMap = 134227734; diff --git a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs index 0ebeea41..aaed39aa 100644 --- a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs +++ b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Entity")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+47894751e0724034b829def7a67852359b02d23f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+44d9249c1b3de281ff1e2af3b67b2562b4043873")] [assembly: System.Reflection.AssemblyProductAttribute("Entity")] [assembly: System.Reflection.AssemblyTitleAttribute("Entity")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache index 7054a3a2..5fe47552 100644 --- a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache +++ b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.AssemblyInfoInputs.cache @@ -1 +1 @@ -11080d70ef29f1e0498d40d3859614eca85bbc477cda1e69c0e86154d55d09de +31795973428e07b3fceaffa0510c02f385d8b020fefa631bb45ac50c0fb11246 diff --git a/GameServer/Server/Entity/obj/Debug/net9.0/Entity.csproj.AssemblyReference.cache b/GameServer/Server/Entity/obj/Debug/net9.0/Entity.csproj.AssemblyReference.cache index b80f9bfa4f280c26751ffde7bae991991a40f1de..898f94fadec468d101801e96bf43f4130b3c44a9 100644 GIT binary patch delta 31 ncmccSe9vh@9NPiM-9O@sCZ;q@p35r07&&>OxcufGMlS^b=eZ2a delta 148 zcmccTbj^7}92 + /// 全服广播 + /// + /// + /// + public static async FTask BoardCast(Scene scene,string message) + { + var gateConfigs = SceneConfigData.Instance.GetSceneBySceneType(SceneType.Gate); + var netMessageComponent = scene.NetworkMessagingComponent; + foreach (var gateConfig in gateConfigs) + { + await netMessageComponent.CallInnerRoute(gateConfig.RouteId, new Chat2G_BoardMessage() + { + Message = message + }); + } + } +} \ No newline at end of file diff --git a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs index e4ac0f37..2346d17a 100644 --- a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs +++ b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Hotfix")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+47894751e0724034b829def7a67852359b02d23f")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+44d9249c1b3de281ff1e2af3b67b2562b4043873")] [assembly: System.Reflection.AssemblyProductAttribute("Hotfix")] [assembly: System.Reflection.AssemblyTitleAttribute("Hotfix")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache index 573893d5..4d3226a7 100644 --- a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache +++ b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.AssemblyInfoInputs.cache @@ -1 +1 @@ -ac95efd761d72ed2f1c9cc0ba8fcf4764b049d05b7f62024c9fe14a561456187 +97176770e951027e48dc8d131f455ec7d6a559b9295defaf58a669df514bceb5 diff --git a/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.csproj.AssemblyReference.cache b/GameServer/Server/Hotfix/obj/Debug/net9.0/Hotfix.csproj.AssemblyReference.cache index 224deee3e9a0e6575431cb1c2e8aefee96936c22..04130c9194e9832a7a68d33ef385722a31b1dad6 100644 GIT binary patch delta 50 zcmccSeb{9}6kF-%eLv!hCMMKOp35mPnVlt^?SSKMpvdGDmIjazW8~zC((;>oSiKYg DKs6L- delta 649 zcmX@?a?N`}6kF`gH>F1kCnnTLGIBC7FfcMQ@Gm!#(E1(oKNWag$aa!xE1nY@9G zLjfqwzz8B37&(B%2K)GW!K++WU;z*@xs6rV0M3Id1@ggqfCdXe4R+4Y$w^Hv$;{6y zh8wPeqz|j%K>c!)19&AS_Y1L2o+BtYv4&%E0VAsdnm)t*7GZ16{7m7(llA0HplYq* zf)Ed2s0G>~it2eipZvs>)FQYu(XGP_170b$i4CmS!b`O}@J6kkZ#vu+lV`D8O2Bz& z;WgP^SP|;(KqNJwu$eMbE12Kqu_9a;62M$#CVB>X#sMoy3-Aovdj zjFYc3>P=Q)RA-C5`KI(p;bdRN8cDD!Tux8`X~*Y;$=PhW21trPOb`I;0h%fV^_X*h zPEKlaNoIatF~oB!a8-pp-rlb}@T!wBDMzBxrkX4&JfgQs|s?~uvYV~~6;r36i=dhH3 z^Pu4fY!IqGuTammqM#_X zxEPV3oQN<%25LfZYI12&W=W-mNrT=JXmF+ETM0KUEP A5dZ)H diff --git a/GameServer/Server/Main/obj/rider.project.model.nuget.info b/GameServer/Server/Main/obj/rider.project.model.nuget.info index 0d48bd2f..650bef0d 100644 --- a/GameServer/Server/Main/obj/rider.project.model.nuget.info +++ b/GameServer/Server/Main/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17435554619814614 \ No newline at end of file +17436510677784519 \ No newline at end of file diff --git a/GameServer/Server/Main/obj/rider.project.restore.info b/GameServer/Server/Main/obj/rider.project.restore.info index fa8f98c9..d27a5abe 100644 --- a/GameServer/Server/Main/obj/rider.project.restore.info +++ b/GameServer/Server/Main/obj/rider.project.restore.info @@ -1 +1 @@ -17435661846531578 \ No newline at end of file +17441036760520492 \ No newline at end of file