Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions config.properties.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
token=DISCORD_TOKEN // Your bot token from the Discord Developer Portal

guild=Guild ID of the main guild this bot is used on
mainLog=Channel ID of the main log channel

welcomeChannel=Channel ID where the welcome messages will be sent
verifiedRole=Role ID of the verified role
memberRole=Role ID of the member role
streamRole=Role ID of the streamer role
gamedayChannel=Channel ID of the channel where gameday messages will be sent
newsChannel=Channel ID of the channel where team news messages will be sent
Comment on lines +1 to +11
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ public void onSlashCommandInteraction(final SlashCommandInteractionEvent event)
EmbedBuilder embed = new EmbedBuilder()
.setTitle("\uD83D\uDCE2 Stream Benachrichtigungen ändern")
.setColor(Color.YELLOW)
.setDescription("Nutze den Button unten um zu ändern ob du Benachrichtigt wirst wenn etwas wichtiges passiert.")
.setDescription("Nutze den Button unten um zu ändern ob du Benachrichtigt werden möchstest, "
+ " wenn etwas wichtiges passiert.")
Comment on lines +48 to +49
.setFooter("FootInfoBot", event.getGuild().getIconUrl());

Button change = Button.primary("notifications", "\uD83D\uDCE2 Ändern");
Expand Down
Loading