File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
java/pro/cloudnode/smp/bankaccounts Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -694,6 +694,11 @@ public int invoicePerPage() {
694694 return MiniMessage .miniMessage ().deserialize (Objects .requireNonNull (config .getString ("messages.errors.player-never-joined" )));
695695 }
696696
697+ // messages.errors.async-failed
698+ public @ NotNull Component messagesErrorsAsyncFailed () {
699+ return MiniMessage .miniMessage ().deserialize (Objects .requireNonNull (config .getString ("messages.errors.async-failed" )));
700+ }
701+
697702 // messages.balance
698703 public @ NotNull Component messagesBalance (final @ NotNull Account account ) {
699704 return MiniMessage .miniMessage ().deserialize (
Original file line number Diff line number Diff line change @@ -350,6 +350,8 @@ messages:
350350 invoice-cannot-send : " <red>(!) You cannot send this invoice to that player because they don't have permission to view it.</red>"
351351 # Player has never played on this server
352352 player-never-joined : " <red>(!) This player has never joined this server.</red>"
353+ # Asynchronous code failed. Detailed info is outputted in the console
354+ async-failed : " <red>(!) The request failed. See the console for details.</red>"
353355
354356 # Account balance
355357 # Available placeholders:
You can’t perform that action at this time.
0 commit comments