(core): fix commands, events & database.

This commit is contained in:
2026-08-26 13:27:20 +08:00
parent eaf05aebc3
commit eb5754d60a
8 changed files with 90 additions and 30 deletions
+2 -2
View File
@@ -28,8 +28,8 @@ const client: CommandClient = new CommandClient({
},
});
commands.forEach(command => client.registerCommand(command));
events.forEach(event => client.registerEvent(event));
commands.forEach(command => client.registerCommand(command, true));
events.forEach(event => client.registerEvent(event, true));
// ----------