diff --git a/bot.py b/bot.py index 505e017..a19d63c 100644 --- a/bot.py +++ b/bot.py @@ -57,8 +57,8 @@ GIFTED_TIER3_ROLE = Config.CONFIG["Discord"]["Subscribers"]["GiftedTier3Role"] # HIDDEN_MOD_ROLE should be 1040337265790042172 when committing and refers to the Mod (Role Hidden) # STAFF_DEVELOPER_ROLE should be 1226317841272279131 when committing and refers to the Staff Developer role -HIDDEN_MOD_ROLE = 1040337265790042172 -STAFF_DEVELOPER_ROLE = 1226317841272279131 +HIDDEN_MOD_ROLE = Config.CONFIG["Discord"]["Subscribers"]["HiddenMod"] +STAFF_DEVELOPER_ROLE = Config.CONFIG["Discord"]["Subscribers"]["StaffDev"] FOSSA_BOT_ID = 488164251249279037 SERVER_SUBSCRIPTION_MESSAGE_TYPE = 25 CUSTOM_EMOJI_PATTERN = re.compile("(?)") diff --git a/commands/prediction_commands.py b/commands/prediction_commands.py index b5932d5..ac59f7f 100644 --- a/commands/prediction_commands.py +++ b/commands/prediction_commands.py @@ -35,8 +35,8 @@ # HIDDEN_MOD_ROLE should be 1040337265790042172 when committing and refers to the Mod (Role Hidden) # STAFF_DEVELOPER_ROLE should be 1226317841272279131 when committing and refers to the Staff Developer role # PREDICTION_DEALER_ROLE should be 1229896209515282472 when committing and refers to the Dealer role for Predictions -HIDDEN_MOD_ROLE = 1040337265790042172 -STAFF_DEVELOPER_ROLE = 1226317841272279131 +HIDDEN_MOD_ROLE = Config.CONFIG["Discord"]["Subscribers"]["HiddenMod"] +STAFF_DEVELOPER_ROLE = Config.CONFIG["Discord"]["Subscribers"]["StaffDev"] PREDICTION_DEALER_ROLE = 1229896209515282472 diff --git a/commands/sync_commands.py b/commands/sync_commands.py index d1b4a86..9872b90 100644 --- a/commands/sync_commands.py +++ b/commands/sync_commands.py @@ -18,8 +18,8 @@ # for testing on own setup, these need to be changed to your appropriate IDs # HIDDEN_MOD_ROLE should be 1040337265790042172 when committing and refers to the Mod (Role Hidden) # STAFF_DEVELOPER_ROLE should be 1226317841272279131 when committing and refers to the Staff Developer role -HIDDEN_MOD_ROLE = 1040337265790042172 -STAFF_DEVELOPER_ROLE = 1226317841272279131 +HIDDEN_MOD_ROLE = Config.CONFIG["Discord"]["Subscribers"]["HiddenMod"] +STAFF_DEVELOPER_ROLE = Config.CONFIG["Discord"]["Subscribers"]["StaffDev"] @app_commands.guild_only() diff --git a/commands/viewer_commands.py b/commands/viewer_commands.py index 9d533fe..fe1a8ff 100644 --- a/commands/viewer_commands.py +++ b/commands/viewer_commands.py @@ -30,8 +30,8 @@ PUBLISH_POLL_URL = f"{get_base_url()}/publish-poll-answer" POKEMON_PUBLISH_URL = f"{get_base_url()}/publish-streamdeck" -HIDDEN_MOD_ROLE = 1040337265790042172 -STAFF_DEVELOPER_ROLE = 1226317841272279131 +HIDDEN_MOD_ROLE = Config.CONFIG["Discord"]["Subscribers"]["HiddenMod"] +STAFF_DEVELOPER_ROLE = Config.CONFIG["Discord"]["Subscribers"]["StaffDev"] MOD_ROLE = Config.CONFIG["Discord"]["Roles"]["Mod"] GIFTED_T2_ROLE = Config.CONFIG["Discord"]["Subscribers"]["GiftedTier2Role"] TEMPROLE_AUDIT_CHANNEL = 1225769539267199026 diff --git a/controllers/raffle_controller.py b/controllers/raffle_controller.py index 7b559c2..5a6c8a0 100644 --- a/controllers/raffle_controller.py +++ b/controllers/raffle_controller.py @@ -12,8 +12,8 @@ TIER3_ROLE = Config.CONFIG["Discord"]["Subscribers"]["Tier3Role"] GIFTED_TIER3_ROLE = Config.CONFIG["Discord"]["Subscribers"]["GiftedTier3Role"] -HIDDEN_MOD_ROLE = 1040337265790042172 -STAFF_DEVELOPER_ROLE = 1226317841272279131 +HIDDEN_MOD_ROLE = Config.CONFIG["Discord"]["Subscribers"]["HiddenMod"] +STAFF_DEVELOPER_ROLE = Config.CONFIG["Discord"]["Subscribers"]["StaffDev"] MOD_ROLE = Config.CONFIG["Discord"]["Roles"]["Mod"]