Move IgnitionEvent to shared (#30985)

This commit is contained in:
DrSmugleaf
2024-09-01 17:27:13 -07:00
committed by GitHub
parent 551c978d2f
commit 49e0933389
3 changed files with 3 additions and 5 deletions

View File

@@ -1,4 +1,5 @@
using Content.Server.Atmos.EntitySystems; using Content.Server.Atmos.EntitySystems;
using Content.Shared.IgnitionSource;
using Content.Shared.Item.ItemToggle.Components; using Content.Shared.Item.ItemToggle.Components;
using Content.Shared.Temperature; using Content.Shared.Temperature;
using Robust.Server.GameObjects; using Robust.Server.GameObjects;

View File

@@ -1,18 +1,15 @@
using Content.Server.IgnitionSource;
using Content.Server.Light.Components; using Content.Server.Light.Components;
using Content.Shared.Clothing.Components; using Content.Shared.Clothing.Components;
using Content.Shared.Clothing.EntitySystems; using Content.Shared.Clothing.EntitySystems;
using Content.Shared.IgnitionSource;
using Content.Shared.Interaction.Events; using Content.Shared.Interaction.Events;
using Content.Shared.Item; using Content.Shared.Item;
using Content.Shared.Light.Components; using Content.Shared.Light.Components;
using Content.Shared.Tag; using Content.Shared.Tag;
using Content.Shared.Temperature;
using Content.Shared.Verbs; using Content.Shared.Verbs;
using JetBrains.Annotations; using JetBrains.Annotations;
using Robust.Server.GameObjects; using Robust.Server.GameObjects;
using Robust.Shared.Audio;
using Robust.Shared.Audio.Systems; using Robust.Shared.Audio.Systems;
using Robust.Shared.Player;
using Robust.Shared.Utility; using Robust.Shared.Utility;
namespace Content.Server.Light.EntitySystems namespace Content.Server.Light.EntitySystems

View File

@@ -1,4 +1,4 @@
namespace Content.Server.IgnitionSource; namespace Content.Shared.IgnitionSource;
/// <summary> /// <summary>
/// Raised in order to toggle the ignitionSourceComponent on an entity on or off /// Raised in order to toggle the ignitionSourceComponent on an entity on or off