From: Blazeror <154933882+Blazeror@users.noreply.github.com> Date: Thu, 25 Jan 2024 13:31:32 +0000 (+0100) Subject: Removed TilePryingDoAfterEvent (#24552) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=505e4239639a7a3dce4710778ea97fff861f9ef1;p=space-station-14.git Removed TilePryingDoAfterEvent (#24552) --- diff --git a/Content.Shared/Tools/Systems/SharedToolSystem.cs b/Content.Shared/Tools/Systems/SharedToolSystem.cs index a4f21ff466..ee15b1e025 100644 --- a/Content.Shared/Tools/Systems/SharedToolSystem.cs +++ b/Content.Shared/Tools/Systems/SharedToolSystem.cs @@ -270,24 +270,6 @@ public abstract partial class SharedToolSystem : EntitySystem public override DoAfterEvent Clone() => this; } - - [Serializable, NetSerializable] - protected sealed partial class TilePryingDoAfterEvent : DoAfterEvent - { - [DataField("coordinates", required: true)] - public NetCoordinates Coordinates; - - private TilePryingDoAfterEvent() - { - } - - public TilePryingDoAfterEvent(NetCoordinates coordinates) - { - Coordinates = coordinates; - } - - public override DoAfterEvent Clone() => this; - } } [Serializable, NetSerializable]