From 3a961fffbbc278e956374ebb9a3adfcdaa35b482 Mon Sep 17 00:00:00 2001 From: That-One-Nerd Date: Tue, 16 May 2023 16:18:11 -0400 Subject: [PATCH] Forgot to actually make the variable do something. --- SrcMod/Shell/Shell.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SrcMod/Shell/Shell.cs b/SrcMod/Shell/Shell.cs index e21cc26..ffa2383 100644 --- a/SrcMod/Shell/Shell.cs +++ b/SrcMod/Shell/Shell.cs @@ -153,7 +153,7 @@ public class Shell if (ActiveMod is not null) Write($"{ActiveMod} ", ConsoleColor.Magenta, false); - if (ActiveMod is not null) + if (ActiveMod is not null && Config.LoadedConfig.UseLocalModDirectories) { string directory = Path.GetRelativePath(ActiveMod.RootDirectory, WorkingDirectory); if (directory == ".") directory = string.Empty;