We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfe977e commit e7bcefdCopy full SHA for e7bcefd
paper/src/main/java/io/github/projectunified/unidialog/paper/PaperUtil.java
@@ -12,7 +12,7 @@ public interface PaperUtil {
12
@SuppressWarnings("unchecked")
13
static Map<String, String> convertDialogResponseToMap(DialogResponseView response) {
14
try {
15
- Field compoundField = response.getClass().getDeclaredField("compound");
+ Field compoundField = response.getClass().getDeclaredField("payload");
16
compoundField.setAccessible(true);
17
18
Object compound = compoundField.get(response);
0 commit comments