mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-17 13:37:47 +03:00
Just removes some lines of code. (cherry picked from commit e665c2487e2f248bdc6b435bdcdb3060c69b546c)
16 lines
380 B
C#
16 lines
380 B
C#
using Content.Client.Fluids.UI;
|
|
using Content.Client.Items;
|
|
using Content.Shared.Fluids;
|
|
|
|
namespace Content.Client.Fluids;
|
|
|
|
/// <inheritdoc/>
|
|
public sealed class AbsorbentSystem : SharedAbsorbentSystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
Subs.ItemStatus<AbsorbentComponent>(ent => new AbsorbentItemStatus(ent, EntityManager));
|
|
}
|
|
}
|