Add confirmation message, change color, fix author icon url

This commit is contained in:
2022-02-20 19:12:20 +01:00
parent 8d6efe0265
commit a0c626a88f
2 changed files with 5 additions and 3 deletions
@@ -411,6 +411,7 @@ public final class Config {
}
public static HashMap<String, Long> serverChannelId = new HashMap<>();
public static String REPORT_SENT = "<green>Your report was sent, staff will contact you asap to help resolve your issue!</green>";
private static void loadChannelIds() {
serverChannelId.clear();
serverChannelId.put("general", getLong("discord-channel-id.general", (long) -1));
@@ -424,5 +425,6 @@ public final class Config {
long channelId = configurationNode.getLong();
serverChannelId.put(key.toLowerCase(), channelId);
}
REPORT_SENT = getString("messages.report-sent", REPORT_SENT);
}
}