Add Linux themed madlib written by ChatGPT
This commit is contained in:
parent
144153ee94
commit
a6077af7f5
@ -41,12 +41,14 @@ module.exports = {
|
||||
const channel = client.channels.cache.get(interaction.channel.id);
|
||||
channel.send({ content: 'Select a story', components: [row], fetchMessage: true });
|
||||
client.on(Events.InteractionCreate, interaction => {
|
||||
interaction.deferUpdate();
|
||||
if (!interaction.isStringSelectMenu()) return;
|
||||
selectedStory = interaction.values[0];
|
||||
console.log("User selected: " +selectedStory);
|
||||
initGame(interaction.channel.id, client, interaction, selectedStory);
|
||||
//storySelectMessage.delete();
|
||||
console.log(interaction);
|
||||
interaction.channel.send("Started game!");
|
||||
});
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user