Skip to content

Commit

Permalink
Add pvp command. #34
Browse files Browse the repository at this point in the history
  • Loading branch information
connorhsm committed Jan 16, 2025
1 parent bceef54 commit a26c5d4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions commands/pvp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
const { SlashCommandBuilder } = require('@discordjs/builders');

module.exports = {
data: new SlashCommandBuilder()
.setName('pvp')
.setDescription('pvp in 2HOL'),
async execute(interaction) {
return interaction.reply('2HOL isn\'t the place for PVP, which is why we are excited to announce the next game in the 2HOL Shared Universe! Releasing on the 32nd of next month: 2HOL Battle Royale! Check out the trailer [here](<https://www.youtube.com/watch?v=dQw4w9WgXcQ>).');
},
};

0 comments on commit a26c5d4

Please sign in to comment.