2022-02-07 00:34:13 +11:00
|
|
|
using Content.Server.Administration.Logs;
|
2023-12-29 04:47:43 -08:00
|
|
|
using Content.Server.Chemistry.Containers.EntitySystems;
|
2022-02-07 00:34:13 +11:00
|
|
|
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-11-19 17:07:50 +01:00
|
|
|
[Dependency] private readonly IEntityManager _entMan = default!;
|
2022-02-07 00:34:13 +11:00
|
|
|
[Dependency] private readonly PopupSystem _popup = default!;
|
2023-12-29 04:47:43 -08:00
|
|
|
[Dependency] private readonly SolutionContainerSystem _solutionContainers = default!;
|
2022-02-07 00:34:13 +11:00
|
|
|
|
|
|
|
|
public override void Initialize()
|
|
|
|
|
{
|
2022-03-29 03:58:51 +11:00
|
|
|
// Why ChemMaster duplicates reagentdispenser nobody knows.
|
2024-03-20 22:51:28 +03:00
|
|
|
InitializePatch();
|
2022-02-07 00:34:13 +11:00
|
|
|
}
|
|
|
|
|
}
|