This commit is contained in:
Swept
2020-09-20 15:29:11 +00:00
committed by GitHub
parent 9c72008ece
commit 0ea8792501
22 changed files with 24 additions and 45 deletions

View File

@@ -108,7 +108,7 @@ namespace Content.Server.GameObjects.Components.Interactable
{
if (entity.TryGetComponent(out AnchorableComponent? anchorable))
{
anchorable.TryAnchor(player.AttachedEntity, force: true);
_ = anchorable.TryAnchor(player.AttachedEntity, force: true);
}
}
}
@@ -153,7 +153,7 @@ namespace Content.Server.GameObjects.Components.Interactable
{
if (entity.TryGetComponent(out AnchorableComponent? anchorable))
{
anchorable.TryUnAnchor(player.AttachedEntity, force: true);
_ = anchorable.TryUnAnchor(player.AttachedEntity, force: true);
}
}
}