Cleanup unused/redundant dependencies (#38099)

This commit is contained in:
Tayrtahn
2025-06-06 12:11:52 -04:00
committed by GitHub
parent a332817803
commit 95632859b7
12 changed files with 1 additions and 15 deletions

View File

@@ -33,7 +33,6 @@ public abstract partial class SharedBuckleSystem
public static ProtoId<AlertCategoryPrototype> BuckledAlertCategory = "Buckled";
[Dependency] private readonly EntityWhitelistSystem _whitelistSystem = default!;
[Dependency] private readonly ActionBlockerSystem _actionBlocker = default!;
private void InitializeBuckle()
{
@@ -523,7 +522,7 @@ public abstract partial class SharedBuckleSystem
if (!_interaction.InRangeUnobstructed(user.Value, strap.Owner, buckle.Comp.Range, popup: popup))
return false;
if (user.Value != buckle.Owner && !_actionBlocker.CanComplexInteract(user.Value))
if (user.Value != buckle.Owner && !ActionBlocker.CanComplexInteract(user.Value))
return false;
}