Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into core
Browse files Browse the repository at this point in the history
  • Loading branch information
Popax21 committed Sep 11, 2023
2 parents 1321b6d + 51f0347 commit 0aa2548
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Celeste.Mod.mm/Mod/Module/EverestModuleMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ public override string ToString() {
/// Perform a few basic post-parsing operations. For example, make the DLL path absolute if the mod is in a directory.
/// </summary>
public void PostParse() {
if (!string.IsNullOrEmpty(DLL) && !string.IsNullOrEmpty(PathDirectory) && !File.Exists(DLL))
if (!string.IsNullOrEmpty(DLL) && !string.IsNullOrEmpty(PathDirectory))
DLL = Path.Combine(PathDirectory, DLL.Replace('/', Path.DirectorySeparatorChar).Replace('\\', Path.DirectorySeparatorChar));

// Add dependency to API 1.0 if missing.
Expand Down

0 comments on commit 0aa2548

Please sign in to comment.