mirror of
https://github.com/litruv/DAdmin.git
synced 2026-07-24 02:36:11 +10:00
10 lines
346 B
JavaScript
10 lines
346 B
JavaScript
exports.name = 'Set auto parent'
|
|
exports.alias = ['setautoparent']
|
|
exports.helptext = 'sets the auto creation category'
|
|
exports.helphide = false
|
|
exports.permissions = ['ADMINISTRATOR']
|
|
exports.args = ['VChannelID']
|
|
exports.category = 'admin'
|
|
exports.command = (client, msg) => {
|
|
database.set_setting(msg.guild.id, "autoParent", msg.suffix);
|
|
} |