Fixed loading plugins at startup

This commit is contained in:
2023-06-15 22:12:15 +03:00
parent 188920ec7f
commit 970c519a32
4 changed files with 4 additions and 4 deletions

View File

@@ -13,7 +13,7 @@ namespace PluginManager.Others
public SocketCommandContext context { get; init; }
public string cleanContent { get; init; }
public string commandUsed { get;init; }
public string[] arguments { get;init; }
public string[]? arguments { get;init; }
public DBCommandExecutingArguments(SocketCommandContext context, string cleanContent, string commandUsed, string[] arguments)
{