Skip to content

Commit cc1d418

Browse files
committed
fix: Update role id and add disclaimer
1 parent 9ee0db4 commit cc1d418

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/commands/embeds/paidmember.js

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ module.exports = {
3737
'Benefits?',
3838
'Come to every event\r\n Vote in AGMs and EGMs\r\n Access a special area, just for paid members\r\n Access our archive of previous events and guest talks\r\n\r\nAnd support the society you are apart of!'
3939
)
40+
.addField(
41+
'Disclaimer!',
42+
'This is a manual process, executive members need to verify that you have paid your membership and then manually give you the role. **There is no notification of you receiving the role!**'
43+
)
4044
.addField('Pay for a membership', 'Press the grey button below!')
4145
.setThumbnail('https://i.imgur.com/ww6wKwJ.png');
4246

src/events/interactionCreate.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ client.on('interactionCreate', async (interaction) => {
5050
}
5151

5252
if (interaction.customId == 'paidModal') {
53-
if (interaction.member.roles.cache.has(`427878753008353292`)) {
53+
if (interaction.member.roles.cache.has(`1003727320147820634`)) {
5454
await interaction.deferReply({ ephemeral: true });
5555
interaction.followUp({
5656
content: 'You already have the paid member role.',
@@ -305,7 +305,7 @@ client.on('interactionCreate', async (interaction) => {
305305
execchannel.send({ embeds: [embed], components: [row] });
306306
await interaction.deferReply({ ephemeral: true });
307307
interaction.followUp({
308-
content: 'Your request has been sent to execs!',
308+
content: 'Your request has been sent to execs! Please be patient as execs, like you, are also students!',
309309
ephemeral: true,
310310
});
311311
}

0 commit comments

Comments
 (0)