From: Pieter-Jan Briers Date: Tue, 16 Jan 2024 19:25:07 +0000 (+0100) Subject: Fix missing [NetSerializable] in SimplePredictReconcileTest (#24161) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=45136ef8251e0446ffb584ffb2b3132acb77c863;p=space-station-14.git Fix missing [NetSerializable] in SimplePredictReconcileTest (#24161) This didn't cause any issues because NetSerializer wasn't used in integration tests... until https://github.com/space-wizards/RobustToolbox/pull/4838. --- diff --git a/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs b/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs index ec60af5d42..52d464fa41 100644 --- a/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs +++ b/Content.IntegrationTests/Tests/Networking/SimplePredictReconcileTest.cs @@ -10,6 +10,7 @@ using Robust.Shared.GameObjects; using Robust.Shared.GameStates; using Robust.Shared.IoC; using Robust.Shared.Map; +using Robust.Shared.Serialization; using Robust.Shared.Timing; namespace Content.IntegrationTests.Tests.Networking @@ -420,6 +421,7 @@ namespace Content.IntegrationTests.Tests.Networking } } + [Serializable, NetSerializable] public sealed class SetFooMessage : EntityEventArgs { public SetFooMessage(NetEntity uid, bool newFoo)