This commit is contained in:
2022-10-22 14:44:55 +03:00
parent cad3bb5b75
commit 725d02d152
9 changed files with 118 additions and 148 deletions

View File

@@ -271,7 +271,7 @@ public class Program
if (len > 0 && args[0] == "/remplug")
{
var plugName = args.MergeStrings(1);
var plugName = string.Join(' ', args, 1, args.Length - 1);
Console.WriteLine("Starting to remove " + plugName);
await ConsoleCommandsHandler.ExecuteCommad("remplug " + plugName);
loadPluginsOnStartup = true;