]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Moving FlammableComponent to Shared (#39870)
authorM4rchy-S <89603088+M4rchy-S@users.noreply.github.com>
Sun, 24 Aug 2025 20:46:23 +0000 (23:46 +0300)
committerGitHub <noreply@github.com>
Sun, 24 Aug 2025 20:46:23 +0000 (13:46 -0700)
Content.Server/Administration/Systems/AdminVerbSystem.Smites.cs
Content.Server/Anomaly/Effects/PyroclasticAnomalySystem.cs
Content.Server/EntityEffects/EntityEffectSystem.cs
Content.Server/Explosion/EntitySystems/ExplosionSystem.cs
Content.Server/NPC/Systems/NPCUtilitySystem.cs
Content.Server/Xenoarchaeology/Artifact/XAE/XAEIgniteSystem.cs
Content.Shared/Atmos/Components/FlammableComponent.cs [moved from Content.Server/Atmos/Components/FlammableComponent.cs with 95% similarity]

index cd89b11e108ef51150b5c530768da1337b32f510..90e5e46d655080f97c77706241762e2b752f8e87 100644 (file)
@@ -1,10 +1,8 @@
 using System.Threading;
 using Content.Server.Administration.Components;
-using Content.Server.Atmos.Components;
 using Content.Server.Atmos.EntitySystems;
 using Content.Server.Body.Components;
 using Content.Server.Body.Systems;
-using Content.Server.Clothing.Systems;
 using Content.Server.Electrocution;
 using Content.Server.Explosion.EntitySystems;
 using Content.Server.GhostKick;
@@ -19,6 +17,7 @@ using Content.Server.Tabletop;
 using Content.Server.Tabletop.Components;
 using Content.Shared.Administration;
 using Content.Shared.Administration.Components;
+using Content.Shared.Atmos.Components;
 using Content.Shared.Body.Components;
 using Content.Shared.Body.Part;
 using Content.Shared.Clumsy;
@@ -40,7 +39,6 @@ using Content.Shared.Nutrition.Components;
 using Content.Shared.Popups;
 using Content.Shared.Slippery;
 using Content.Shared.Storage.Components;
-using Content.Shared.Stunnable;
 using Content.Shared.Tabletop.Components;
 using Content.Shared.Tools.Systems;
 using Content.Shared.Verbs;
@@ -50,7 +48,6 @@ using Robust.Shared.Physics.Components;
 using Robust.Shared.Physics.Systems;
 using Robust.Shared.Player;
 using Robust.Shared.Random;
-using Robust.Shared.Timing;
 using Robust.Shared.Utility;
 using Timer = Robust.Shared.Timing.Timer;
 
index d38bda562bc0ff37cf043ddbd33b666b0401044e..5ceb9888f4ab438d294e7edf0661c6464cef8e7a 100644 (file)
@@ -1,7 +1,7 @@
-using Content.Server.Atmos.Components;
 using Content.Server.Atmos.EntitySystems;
 using Content.Shared.Anomaly.Components;
 using Content.Shared.Anomaly.Effects.Components;
+using Content.Shared.Atmos.Components;
 using Robust.Shared.Map;
 
 namespace Content.Server.Anomaly.Effects;
index b0b8ab50456c025b63c0492d172dfd4e941b098e..f423a432612ca37f1472616678155fc183b00525 100644 (file)
@@ -1,6 +1,5 @@
 using System.Diagnostics.CodeAnalysis;
 using System.Linq;
-using Content.Server.Atmos.Components;
 using Content.Server.Atmos.EntitySystems;
 using Content.Server.Body.Components;
 using Content.Server.Body.Systems;
@@ -22,6 +21,7 @@ using Content.Server.Temperature.Systems;
 using Content.Server.Traits.Assorted;
 using Content.Server.Zombies;
 using Content.Shared.Atmos;
+using Content.Shared.Atmos.Components;
 using Content.Shared.Body.Components;
 using Content.Shared.Coordinates.Helpers;
 using Content.Shared.EntityEffects.EffectConditions;
index c50b1e53faafdda017c29a3f1fe3c7625d461161..fc31a7704124f444b9e2d88d61ff5e75fa069556 100644 (file)
@@ -4,6 +4,7 @@ using Content.Server.Administration.Logs;
 using Content.Server.Atmos.Components;
 using Content.Server.NodeContainer.EntitySystems;
 using Content.Server.NPC.Pathfinding;
+using Content.Shared.Atmos.Components;
 using Content.Shared.Camera;
 using Content.Shared.CCVar;
 using Content.Shared.Damage;
index 5f077a06bb5c42de68064625dbcfb774632256db..813626a1c44946c56a9e63201fbc5c8e69160e37 100644 (file)
@@ -1,4 +1,3 @@
-using Content.Server.Atmos.Components;
 using Content.Server.Fluids.EntitySystems;
 using Content.Server.Hands.Systems;
 using Content.Server.NPC.Queries;
@@ -6,13 +5,11 @@ using Content.Server.NPC.Queries.Considerations;
 using Content.Server.NPC.Queries.Curves;
 using Content.Server.NPC.Queries.Queries;
 using Content.Server.Nutrition.Components;
-using Content.Server.Nutrition.EntitySystems;
 using Content.Server.Temperature.Components;
 using Content.Shared.Chemistry.EntitySystems;
 using Content.Shared.Damage;
 using Content.Shared.Examine;
 using Content.Shared.Fluids.Components;
-using Content.Shared.Hands.Components;
 using Content.Shared.Inventory;
 using Content.Shared.Mobs;
 using Content.Shared.Mobs.Systems;
@@ -31,6 +28,7 @@ using Microsoft.Extensions.ObjectPool;
 using Robust.Server.Containers;
 using Robust.Shared.Prototypes;
 using Robust.Shared.Utility;
+using Content.Shared.Atmos.Components;
 using System.Linq;
 
 namespace Content.Server.NPC.Systems;
index 14270fb8662407a447c62c3069de5cf42e5bfcbb..7e8fff73ad3da81f2723b315d03966390cf98a6a 100644 (file)
@@ -1,6 +1,6 @@
-using Content.Server.Atmos.Components;
 using Content.Server.Atmos.EntitySystems;
 using Content.Server.Xenoarchaeology.Artifact.XAE.Components;
+using Content.Shared.Atmos.Components;
 using Content.Shared.Xenoarchaeology.Artifact;
 using Content.Shared.Xenoarchaeology.Artifact.XAE;
 using Robust.Shared.Random;
similarity index 95%
rename from Content.Server/Atmos/Components/FlammableComponent.cs
rename to Content.Shared/Atmos/Components/FlammableComponent.cs
index 9ae99a15136e13cec2b2b07dc45a1bab8ce6e9fb..acfb9e25401d2db7e5ef12630098a9f7d78974de 100644 (file)
@@ -1,11 +1,12 @@
 using Content.Shared.Alert;
 using Content.Shared.Damage;
+using Robust.Shared.GameStates;
 using Robust.Shared.Physics.Collision.Shapes;
 using Robust.Shared.Prototypes;
 
-namespace Content.Server.Atmos.Components
+namespace Content.Shared.Atmos.Components
 {
-    [RegisterComponent]
+    [RegisterComponent, NetworkedComponent]
     public sealed partial class FlammableComponent : Component
     {
         [DataField]