From cca0b7a03bcd61af12b7f9bff51276f6c70beeb3 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Mon, 26 Jul 2021 18:45:31 -0400 Subject: refactor: this.client.util -> util --- src/commands/admin/channelPermissions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/commands/admin') diff --git a/src/commands/admin/channelPermissions.ts b/src/commands/admin/channelPermissions.ts index 249789d..00d37c3 100644 --- a/src/commands/admin/channelPermissions.ts +++ b/src/commands/admin/channelPermissions.ts @@ -89,7 +89,7 @@ export default class ChannelPermissionsCommand extends BushCommand { paginate.push(new MessageEmbed().setDescription(failure.substring(i, Math.min(failure.length, i + 2000)))); } const normalMessage = `Finished changing perms! Failed channels:`; - this.client.util.buttonPaginate(message, paginate, normalMessage); + util.buttonPaginate(message, paginate, normalMessage); } else { await message.util.reply({ content: `Finished changing perms! Failed channels:`, embeds: [{ description: failure }] }); } -- cgit