IT BUILDS!!!
- Removed LocalizationServices and other sus things. - Rewrote AssemblyLoader [In Progress] SafeStorageService [In Progress] LuaScriptLoader
This commit is contained in:
+11
-1
@@ -326,7 +326,17 @@ public sealed class ContentPackageInfoLookup : IPackageInfoLookupService, IEvent
|
||||
.ToImmutableArray()
|
||||
).GetAwaiter().GetResult();
|
||||
}
|
||||
|
||||
|
||||
public bool IsPackageEnabled(ContentPackage package)
|
||||
{
|
||||
if (package is null)
|
||||
return false;
|
||||
using (_packageSetsLock.AcquireReaderLock().GetAwaiter().GetResult())
|
||||
{
|
||||
return _enabledPackages.Contains(package);
|
||||
}
|
||||
}
|
||||
|
||||
public async Task<Result<IPackageInfo>> Lookup(string packageName)
|
||||
{
|
||||
((IService)this).CheckDisposed();
|
||||
|
||||
Reference in New Issue
Block a user