Feature/23 migrate to typescript #73
2 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
`ChannelNotFound`
|
||||
export default class ErrorMessages {
|
||||
public static readonly InsufficientBotPermissions = "Unable to do this action, am I missing permissions?";
|
||||
public static readonly CantFindChannel = "Unable to find channel";
|
||||
`ChannelNotFound`
|
||||
public static readonly ChannelNotFound = "Unable to find channel";
|
||||
`ChannelNotFound`
|
||||
public static readonly RoleNotFound = "Unable to find role";
|
||||
}
|
|
@ -38,7 +38,7 @@ export default class LogEmbed extends MessageEmbed {
|
|||
.find(channel => channel.name == name) as TextChannel;
|
||||
|
||||
if (!channel) {
|
||||
const errorEmbed = new ErrorEmbed(this._context, ErrorMessages.CantFindChannel);
|
||||
const errorEmbed = new ErrorEmbed(this._context, ErrorMessages.ChannelNotFound);
|
||||
errorEmbed.SendToCurrentChannel();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue
ChannelNotFound