Skip to content
This repository was archived by the owner on May 24, 2019. It is now read-only.

Commit 2121fae

Browse files
committed
add notice about custom emojis not being supported currently
1 parent 2f037b6 commit 2121fae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/github/scarsz/discordsupportbot/listeners/DiscordSetupListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public void handleSetup(GuildMessageReceivedEvent event) {
4343

4444
boolean pmTranscriptsOnClose = DiscordUtil.pullYesOrNo(event.getChannel().sendMessage("PM chat transcript to all participants of a given ticket when it is closed? (Suggested: ✅)").complete(), event.getAuthor());
4545
boolean authorCanCloseTicket = DiscordUtil.pullYesOrNo(event.getChannel().sendMessage("Author can close their tickets themselves? (otherwise only approved ticket-closers) (Suggested: ✅)").complete(), event.getAuthor());
46-
String defaultReactionEmoji = DiscordUtil.pullGuildMessageReactionAddEvent(event.getChannel().sendMessage("React to this message to set the default emoji to react with for the first message in a ticket. (Suggested: ✅)").complete(), event.getAuthor()).getReactionEmote().getName();
46+
String defaultReactionEmoji = DiscordUtil.pullGuildMessageReactionAddEvent(event.getChannel().sendMessage("React to this message to set the default emoji to react with for the first message in a ticket. (Suggested: ✅) ***__NOTE:__ CUSTOM EMOJIS NOT SUPPORTED CURRENTLY***").complete(), event.getAuthor()).getReactionEmote().getName();
4747
int secondsUntilTicketCloses = DiscordUtil.pullInteger(event.getChannel().sendMessage("Seconds until a ticket's text channel is deleted after the ticket being marked as solved? (Suggested: 60)").complete().getTextChannel(), event.getAuthor());
4848
int hoursUntilChannelTimeout = DiscordUtil.pullInteger(event.getChannel().sendMessage("How many hours can go by since the last message in a channel before the channel is deleted due to inactivity? (Suggested: 72 [3 days])").complete().getTextChannel(), event.getAuthor());
4949
int maxOpenTickets = DiscordUtil.pullInteger(event.getChannel().sendMessage("How many tickets can be open in this server at any given time? (Suggested: 0 [unlimited])").complete().getTextChannel(), event.getAuthor());

0 commit comments

Comments
 (0)