updated format

This commit is contained in:
John Facey
2022-06-17 17:54:31 -05:00
parent ee20841f8a
commit e582610ebf
3 changed files with 4 additions and 3 deletions

View File

@@ -12,6 +12,6 @@ module.exports = {
var question = encodeURIComponent(args.join(" "));
var answerData = await libFlayer.getAnswer(question);
message.reply(`${answerData.text} - ${answerData.source}`);
message.reply(`Answer: ${answerData.text}\n Source: ${answerData.source}`);
}
};

View File

@@ -12,6 +12,6 @@ module.exports = {
var question = encodeURIComponent(args.join(" "));
var slangData = await libFlayer.getSlang(question);
message.reply(`${slangData.definition} - ${slangData.example}`);
message.reply(`Term: ${slangData.definition}\n Example: ${slangData.example}`);
}
};