Skip to content

Commit

Permalink
Merge pull request #164 from horrible-little-slime/no-more-gender
Browse files Browse the repository at this point in the history
remove pronoun roles
  • Loading branch information
gausie authored Nov 16, 2023
2 parents dc177b7 + c368c92 commit 8df982b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 24 deletions.
3 changes: 0 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ VERIFIED_ROLE_ID=
SALT=

# /role
THEY_THEM_ROLE_ID=
HE_HIM_ROLE_ID=
SHE_HER_ROLE_ID=
LISTENER_ROLE_ID=
NO_ALERTS_ROLE_ID=
SUBSCRIBER_ROLE_ID=
Expand Down
18 changes: 0 additions & 18 deletions src/commands/misc/role.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,6 @@ import { config } from "../../config.js";
export const data = new SlashCommandBuilder()
.setName("role")
.setDescription("Self-serve certain roles on the server")
.addSubcommand((subcommand) =>
subcommand
.setName("pronouns")
.setDescription("Please indicate your preferred pronouns")
.addStringOption((option) =>
option
.setName("pronoun")
.setDescription(
"Toggle a preferred pronoun. You can come back to set multiple",
)
.addChoices(
{ name: "they/them", value: config.THEY_THEM_ROLE_ID },
{ name: "he/him", value: config.HE_HIM_ROLE_ID },
{ name: "she/her", value: config.SHE_HER_ROLE_ID },
)
.setRequired(true),
),
)
.addSubcommand((subcommand) =>
subcommand
.setName("alerts")
Expand Down
3 changes: 0 additions & 3 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,6 @@ export const schema = {
SALT: String,

// /role
THEY_THEM_ROLE_ID: SNOWFLAKE_PATTERN,
HE_HIM_ROLE_ID: SNOWFLAKE_PATTERN,
SHE_HER_ROLE_ID: SNOWFLAKE_PATTERN,
LISTENER_ROLE_ID: SNOWFLAKE_PATTERN,
NO_ALERTS_ROLE_ID: SNOWFLAKE_PATTERN,
SUBSCRIBER_ROLE_ID: SNOWFLAKE_PATTERN,
Expand Down

0 comments on commit 8df982b

Please sign in to comment.