Revert "Predicted footstep sounds" (#7068)

This commit is contained in:
metalgearsloth
2022-03-11 14:56:43 +11:00
committed by GitHub
parent dff18251d3
commit 6bf24e748b
8 changed files with 177 additions and 168 deletions

View File

@@ -177,15 +177,6 @@ public sealed class TagSystem : EntitySystem
HasTag(component, id);
}
/// <summary>
/// Checks if a tag has been added to an entity.
/// </summary>
public bool HasTag(EntityUid entity, string id, EntityQuery<TagComponent> tagQuery)
{
return tagQuery.TryGetComponent(entity, out var component) &&
HasTag(component, id);
}
/// <summary>
/// Checks if all of the given tags have been added to an entity.
/// </summary>