Remove entity storage compref (#19557)

This commit is contained in:
metalgearsloth
2023-08-31 18:32:03 +10:00
committed by GitHub
parent d1d9e4dcc3
commit 609bf63893
3 changed files with 31 additions and 13 deletions

View File

@@ -1,8 +1,13 @@
using Content.Shared.Storage.EntitySystems;
using System.Diagnostics.CodeAnalysis;
using Content.Shared.Storage.Components;
using Content.Shared.Storage.EntitySystems;
namespace Content.Client.Storage.Systems;
public sealed class EntityStorageSystem : SharedEntityStorageSystem
{
public override bool ResolveStorage(EntityUid uid, [NotNullWhen(true)] ref SharedEntityStorageComponent? component)
{
return Resolve(uid, ref component);
}
}