From f47759d57548198158c9417f25f3b0eb0a4de16d Mon Sep 17 00:00:00 2001 From: connorhsm Date: Sun, 25 Sep 2022 01:39:12 +1000 Subject: [PATCH] Add noseed command --- commands/noseed.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 commands/noseed.js diff --git a/commands/noseed.js b/commands/noseed.js new file mode 100644 index 0000000..e600462 --- /dev/null +++ b/commands/noseed.js @@ -0,0 +1,10 @@ +const { SlashCommandBuilder } = require('@discordjs/builders'); + +module.exports = { + data: new SlashCommandBuilder() + .setName('noseed') + .setDescription('iTs aKsHullY sPawN cOde'), + async execute(interaction) { + return interaction.reply('"Seeds" have been renamed to "Spawn Codes". This new name is intended to be more descriptive and avoid confusion with the term used in other games. Please avoid using the old name and update references to it wherever possible.'); + }, +}; \ No newline at end of file