diff options
Diffstat (limited to 'src/commands/info/snowflakeInfo.ts')
-rw-r--r-- | src/commands/info/snowflakeInfo.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/info/snowflakeInfo.ts b/src/commands/info/snowflakeInfo.ts index e234cc2..b32245c 100644 --- a/src/commands/info/snowflakeInfo.ts +++ b/src/commands/info/snowflakeInfo.ts @@ -54,7 +54,7 @@ export default class SnowflakeInfoCommand extends BushCommand { } public async exec(message: BushMessage | BushSlashMessage, args: { snowflake: bigint }): Promise<unknown> { const snowflake = `${args.snowflake}` as Snowflake; - const snowflakeEmbed = new MessageEmbed().setTitle('Unknown :snowflake:').setColor(this.client.util.colors.default); + const snowflakeEmbed = new MessageEmbed().setTitle('Unknown :snowflake:').setColor(util.colors.default); // Channel if (this.client.channels.cache.has(snowflake)) { |