Bump engine to 0.19.0.0 (#8417)
This commit is contained in:
committed by
GitHub
parent
5dbe77ecba
commit
cb95d2ae8d
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user