/showsettings
This commit is contained in:
@ -3,8 +3,17 @@ import * as blocklist from "./blocklist";
|
||||
import * as info from "./info";
|
||||
import * as preserveSettings from "./preserveSettings";
|
||||
import * as showBlocklist from "./showblocklist";
|
||||
import * as showSettings from "./showSettings";
|
||||
|
||||
const array = [notification.builder.toJSON(), blocklist.builder.toJSON(), info.builder.toJSON(), preserveSettings.builder.toJSON(), showBlocklist.builder.toJSON()];
|
||||
const commands = [];
|
||||
commands.push(notification);
|
||||
commands.push(blocklist);
|
||||
commands.push(info);
|
||||
commands.push(preserveSettings);
|
||||
commands.push(showBlocklist);
|
||||
commands.push(showSettings);
|
||||
|
||||
const array = commands.map((command) => command.builder.toJSON());
|
||||
|
||||
export {
|
||||
array
|
||||
|
Reference in New Issue
Block a user