Bump engine to 0.19.0.0 (#8417)

This commit is contained in:
Pieter-Jan Briers
2022-05-28 16:29:12 +02:00
committed by GitHub
parent 5dbe77ecba
commit cb95d2ae8d
15 changed files with 31 additions and 14 deletions

View File

@@ -28,7 +28,7 @@ namespace Content.Shared.Whitelist
[DataField("components")] public string[]? Components = null;
[NonSerialized]
private List<IComponentRegistration>? _registrations = null;
private List<ComponentRegistration>? _registrations = null;
/// <summary>
/// Tags that are allowed in the whitelist.
@@ -48,7 +48,7 @@ namespace Content.Shared.Whitelist
if (Components == null) return;
var compfact = IoCManager.Resolve<IComponentFactory>();
_registrations = new List<IComponentRegistration>();
_registrations = new List<ComponentRegistration>();
foreach (var name in Components)
{
var availability = compfact.GetComponentAvailability(name);