Skip to content

Commit 6d46f83

Browse files
committed
fix: add remaining words to cspell.json
1 parent 45d735c commit 6d46f83

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

cspell.json

+5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
"ACWPing",
44
"addemoji",
55
"courserep",
6+
"deletemessage",
7+
"discordjs",
68
"dockerhub",
9+
"execchannel",
710
"freeside",
811
"gorb",
912
"gorbcelebration",
@@ -22,6 +25,8 @@
2225
"Ouroboros",
2326
"paidmember",
2427
"robsoc",
28+
"studentname",
29+
"studentnumber",
2530
"usefullinks",
2631
"welcomechannel"
2732
]

src/events/interactionCreate.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ client.on("interactionCreate", async (interaction) => {
6363
.setLabel("Student Name")
6464
.setStyle("SHORT")
6565
.setCustomId("studentname")
66-
.setPlaceholder(`Joe Bloggs`)
66+
.setPlaceholder(`Joe Blogs`)
6767
const studentnumber = new discord.TextInputComponent()
6868
.setLabel("Student Number")
6969
.setStyle("SHORT")
@@ -238,7 +238,7 @@ client.on("interactionCreate", async (interaction) => {
238238
interaction.member.roles.remove("891422669575184436") // Remove Prof
239239
interaction.member.roles.remove("891422900182204487") // Remove Fellow
240240
}
241-
else if(interaction.values.includes("bcsProff"))
241+
else if(interaction.values.includes("bcsProf"))
242242
{
243243
interaction.member.roles.add("891422669575184436") // Add Prof
244244
interaction.member.roles.remove("891422426133581895") // Remove Student

0 commit comments

Comments
 (0)