2022-02-07 00:34:13 +11:00
|
|
|
using Content.Server.Administration.Logs;
|
|
|
|
|
using Content.Server.Body.Systems;
|
|
|
|
|
using Content.Server.DoAfter;
|
|
|
|
|
using Content.Server.Popups;
|
|
|
|
|
|
|
|
|
|
namespace Content.Server.Chemistry.EntitySystems;
|
|
|
|
|
|
|
|
|
|
public sealed partial class ChemistrySystem : EntitySystem
|
|
|
|
|
{
|
2022-05-28 23:41:17 -07:00
|
|
|
[Dependency] private readonly IAdminLogManager _adminLogger = default!;
|
2022-02-07 00:34:13 +11:00
|
|
|
[Dependency] private readonly BloodstreamSystem _blood = default!;
|
|
|
|
|
[Dependency] private readonly DoAfterSystem _doAfter = default!;
|
|
|
|
|
[Dependency] private readonly PopupSystem _popup = default!;
|
|
|
|
|
[Dependency] private readonly SolutionContainerSystem _solutions = default!;
|
|
|
|
|
|
|
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
2022-03-29 03:58:51 +11:00
|
|
|
// Why ChemMaster duplicates reagentdispenser nobody knows.
|
|
|
|
|
InitializeChemMaster();
|
2022-02-07 00:34:13 +11:00
|
|
|
InitializeHypospray();
|
|
|
|
|
InitializeInjector();
|
2022-03-29 03:58:51 +11:00
|
|
|
InitializeReagentDispenser();
|
2022-02-07 00:34:13 +11:00
|
|
|
}
|
|
|
|
|
}
|