Fix crash on attempting to create tables
This commit is contained in:
parent
b6f14d5ad4
commit
3362c8701c
1 changed files with 4 additions and 2 deletions
|
@ -57,9 +57,11 @@ namespace Noikoio.RegexBot
|
|||
new Module.DMLogger.DMLogger(_client),
|
||||
new Module.AutoMod.AutoMod(_client),
|
||||
new Module.ModTools.ModTools(_client),
|
||||
new Module.ModLogs.ModLogs(_client),
|
||||
new Module.AutoRespond.AutoRespond(_client),
|
||||
new EntityCache.Module(_client) // EntityCache goes before anything else that uses its data
|
||||
|
||||
// EntityCache loads before anything using it
|
||||
new EntityCache.Module(_client),
|
||||
new Module.ModLogs.ModLogs(_client)
|
||||
};
|
||||
|
||||
// Set up logging
|
||||
|
|
Loading…
Reference in a new issue