Change formating

This commit is contained in:
Julian Giebel
2020-08-16 14:58:36 +02:00
parent a85dacf2a7
commit 43606b0617
2 changed files with 2 additions and 2 deletions

View File

@@ -14,7 +14,7 @@ namespace Content.Server.GameObjects.Components
{
public override string Name => "Anchorable";
int IInteractUsing.Priority { get => 1; }
int IInteractUsing.Priority => 1;
/// <summary>
/// Checks if a tool can change the anchored status.

View File

@@ -12,7 +12,7 @@ namespace Content.Server.GameObjects.Components
private bool _isPlaceable;
public bool IsPlaceable { get => _isPlaceable; set => _isPlaceable = value; }
int IInteractUsing.Priority { get => 1; }
int IInteractUsing.Priority => 1;
public override void ExposeData(ObjectSerializer serializer)
{