]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
delete PolymorphOnCollideComponent (#36227)
authorslarticodefast <161409025+slarticodefast@users.noreply.github.com>
Mon, 31 Mar 2025 15:45:18 +0000 (17:45 +0200)
committerGitHub <noreply@github.com>
Mon, 31 Mar 2025 15:45:18 +0000 (17:45 +0200)
delete component

Content.Server/Polymorph/Components/PolymorphOnCollideComponent.cs [deleted file]

diff --git a/Content.Server/Polymorph/Components/PolymorphOnCollideComponent.cs b/Content.Server/Polymorph/Components/PolymorphOnCollideComponent.cs
deleted file mode 100644 (file)
index 577dadb..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-using Content.Server.Polymorph.Systems;
-using Content.Shared.Polymorph;
-using Content.Shared.Whitelist;
-using Robust.Shared.Audio;
-using Robust.Shared.Prototypes;
-
-namespace Content.Server.Polymorph.Components;
-
-[RegisterComponent]
-[Access(typeof(PolymorphSystem))]
-public sealed partial class PolymorphOnCollideComponent : Component
-{
-    [DataField(required: true)]
-    public ProtoId<PolymorphPrototype> Polymorph;
-
-    [DataField(required: true)]
-    public EntityWhitelist Whitelist = default!;
-
-    [DataField]
-    public EntityWhitelist? Blacklist;
-
-    [DataField]
-    public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Magic/forcewall.ogg");
-}