5ef905449d
* Add 24h growth indicator * Fix float math * Fix some bugs * Trim decimals * Add 24 hour observed growth * Add beginning height option * Changed startup message to ping me * Add a ping reminder and setup command for it * Setup automatic water reminders * Improved workflows * New water readiness system * Documentation Time * Fix slash command link * Fix linebreaks * Readability improvements * Forgot to allow checking in prod * Switch to ephemeral reply * Restructuring and new help messages * Not meant to be uploaded * Documentation update * Changing the way reminders are deleted * Tweak timings * Adjust readiness detection system * moar tweekz * fix reminders * Updates to water reminders
18 lines
755 B
JavaScript
18 lines
755 B
JavaScript
const { SlashCommandBuilder } = require('discord.js');
|
|
const dbfn = require('../modules/dbfn.js');
|
|
const fn = require('../modules/functions.js');
|
|
|
|
module.exports = {
|
|
data: new SlashCommandBuilder()
|
|
.setName('setping')
|
|
.setDescription('Run this command when you water your tree to have a reminder sent.'),
|
|
async execute(interaction) {
|
|
await interaction.deferReply({ ephemeral: true });
|
|
const getGuildInfoResponse = await dbfn.getGuildInfo(interaction.guildId);
|
|
const guildInfo = getGuildInfoResponse.data;
|
|
const reminderTimeS = fn.getWaterTime(guildInfo.treeHeight);
|
|
const reminderTimeMs = reminderTimeS * 1000;
|
|
fn.setReminder(interaction, reminderTimeMs, guildInfo.pingRoleId);
|
|
interaction.editReply("A reminder has been set.");
|
|
},
|
|
}; |