Compare commits
No commits in common. "32d18716cb99c62e89ec36d8c2959afa0ee50c11" and "133f68276b946cc6e26723545ce7e6423b7e67cf" have entirely different histories.
32d18716cb
...
133f68276b
|
@ -3,7 +3,6 @@
|
|||
"xan.userBans",
|
||||
"xan.serverBans",
|
||||
"xan.messages",
|
||||
"xan.messageDelivery",
|
||||
"xan.networks",
|
||||
"xan.server_prefs"
|
||||
]
|
||||
|
|
|
@ -1,9 +1,8 @@
|
|||
const { SlashCommandBuilder, PermissionFlagsBits } = require('discord.js');
|
||||
const { SlashCommandBuilder } = require('discord.js');
|
||||
|
||||
module.exports = {
|
||||
data: new SlashCommandBuilder()
|
||||
.setName('setup')
|
||||
.setDefaultMemberPermissions(PermissionFlagsBits.ManageChannels)
|
||||
.addChannelOption((o) => o
|
||||
.setName("channel")
|
||||
.setDescription("Channel to Chat with Xantic")
|
||||
|
|
|
@ -9,7 +9,7 @@ module.exports = {
|
|||
|
||||
// Database Configurations
|
||||
// Possible Options ["mongod" , "mysqld"]
|
||||
database_adapter: "mongod",
|
||||
database_adapter: "mysqld",
|
||||
// If using MongoDB
|
||||
database_uri: process.env['database_uri'] || "",
|
||||
database_name: "xantic",
|
||||
|
|
Loading…
Reference in New Issue