From b869de9be869dabb3ac23bda6254d77c03898923 Mon Sep 17 00:00:00 2001 From: That-One-Nerd Date: Mon, 17 Apr 2023 21:02:39 -0400 Subject: [PATCH] Directory info is now reloaded after every command. One liner fix. --- SrcMod/Shell/Shell.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SrcMod/Shell/Shell.cs b/SrcMod/Shell/Shell.cs index 8516305..08de616 100644 --- a/SrcMod/Shell/Shell.cs +++ b/SrcMod/Shell/Shell.cs @@ -270,6 +270,8 @@ public class Shell activeCommand.Dispose(); activeCommand = null; } + + ReloadDirectoryInfo(); return; } }