Skip to content
This repository was archived by the owner on May 1, 2021. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions Commands/backup.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ module.exports = class backup {
name: r.name,
color: r.color,
hoist: r.hoist,
permissions: r.permissions,
mentionable: r.mentionable,
position: r.position
};
Expand Down Expand Up @@ -208,7 +207,6 @@ module.exports = class backup {
.createRole({
name: role.name,
color: role.color,
permissions: role.permissions,
hoist: role.hoist,
mentionable: role.mentionable,
position: role.position
Expand All @@ -223,7 +221,6 @@ module.exports = class backup {
.forEach(async function(ch) {
message.guild.createChannel(ch.name, {
type: ch.type,
permissionOverwrites: ch.permissionOverwrites
});
});

Expand All @@ -232,7 +229,6 @@ module.exports = class backup {
.forEach(async function(ch) {
message.guild.createChannel(ch.name, {
type: ch.type,
permissionOverwrites: ch.permissionOverwrites
}).then(c => {
const parent = message.guild.channels
.filter(c => c.type === "category")
Expand Down