convert input string to lowercase
This commit is contained in:
parent
11396d8bb9
commit
a96ae91f77
@ -19,7 +19,7 @@ module.exports = {
|
|||||||
.setRequired(true)
|
.setRequired(true)
|
||||||
),
|
),
|
||||||
async execute(interaction) {
|
async execute(interaction) {
|
||||||
var abbreviation = interaction.options.toLowerCase().getString('abbreviation');
|
var abbreviation = interaction.options.getString('abbreviation').toLowerCase();
|
||||||
var phrase = interaction.options.getString('phrase');
|
var phrase = interaction.options.getString('phrase');
|
||||||
await interaction.reply('Adding abbreviation `' + abbreviation + "` to target list. This will complete to the phrase `" + phrase + "`");
|
await interaction.reply('Adding abbreviation `' + abbreviation + "` to target list. This will complete to the phrase `" + phrase + "`");
|
||||||
addPhrase(abbreviation, phrase);
|
addPhrase(abbreviation, phrase);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user