Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Update dependency net.dv8tion:JDA to v5.0.0 #15

Merged
merged 2 commits into from
Jul 14, 2024
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
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<dependency>
<groupId>net.dv8tion</groupId>
<artifactId>JDA</artifactId>
<version>5.0.0-beta.24</version>
<version>5.0.0</version>
</dependency>

<!-- https://javalibs.com/artifact/org.apache.commons/commons-lang3 -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void onButtonInteraction(ButtonInteractionEvent e) {
.build();

Modal ticketModal = create("ticket_modal", "Neues Ticket")
.addActionRows(ActionRow.of(minecraftNameTextInput), ActionRow.of(logInput))
.addComponents(ActionRow.of(minecraftNameTextInput), ActionRow.of(logInput))
.build();

e.replyModal(ticketModal).queue();
Expand Down