forked from OpenDreamProject/OpenDream
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "ACZ fixes (OpenDreamProject#1573)" (OpenDreamProject#1574)
This reverts commit 173ca01.
- Loading branch information
Showing
6 changed files
with
40 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using OpenDreamPackaging; | ||
using Robust.Packaging; | ||
using Robust.Packaging.AssetProcessing; | ||
using Robust.Server.ServerStatus; | ||
|
||
namespace OpenDreamRuntime; | ||
|
||
public sealed class DreamMagicAczProvider : IMagicAczProvider { | ||
private readonly IDependencyCollection _dependencies; | ||
private readonly string _rootPath; | ||
private readonly string[] _resources; | ||
|
||
public DreamMagicAczProvider(IDependencyCollection dependencies, string rootPath, string[] resources) { | ||
_dependencies = dependencies; | ||
_rootPath = rootPath; | ||
_resources = resources; | ||
} | ||
|
||
public async Task Package(AssetPass pass, IPackageLogger logger, CancellationToken cancel) { | ||
var contentDir = DefaultMagicAczProvider.FindContentRootPath(_dependencies); | ||
|
||
await DreamPackaging.WriteResources(contentDir, _rootPath, _resources, pass, logger, cancel); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule RobustToolbox
updated
91 files