This commit is contained in:
Skylar Grant 2023-01-23 01:52:41 -05:00
parent aa924286eb
commit 4a0a5f046a
1 changed files with 1 additions and 1 deletions

View File

@ -14,6 +14,6 @@ module.exports = {
interaction.deferReply();
const treeHeight = interaction.options.getString('height');
const waterTime = Math.floor(Math.floor(Math.pow(treeHeight * 0.07 + 5, 1.1)) / 60);
interaction.reply(`A tree that is ${treeHeight}ft tall will have a watering time of ${waterTime} minutes.`);
interaction.editReply(`A tree that is ${treeHeight}ft tall will have a watering time of ${waterTime} minutes.`);
},
};