This commit is contained in:
Erik 2022-04-22 21:42:49 +03:00
parent c15530dc90
commit 4440aff26c
Signed by: Navy.gif
GPG Key ID: 811EC0CD80E7E5FB
2 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
const { SettingsCommand } = require('../../../interfaces');
class LoggingModule extends SettingsCommand {
class ModerationModule extends SettingsCommand {
constructor(client) {
super(client, {
@ -12,4 +12,4 @@ class LoggingModule extends SettingsCommand {
}
module.exports = LoggingModule;
module.exports = ModerationModule;

View File

@ -1,6 +1,6 @@
const { SettingsCommand } = require('../../../interfaces');
class LoggingModule extends SettingsCommand {
class UtilityModule extends SettingsCommand {
constructor(client) {
super(client, {
@ -12,4 +12,4 @@ class LoggingModule extends SettingsCommand {
}
module.exports = LoggingModule;
module.exports = UtilityModule;