diff --git a/src/main/java/xyz/etztech/qol/other/GriefAlert.java b/src/main/java/xyz/etztech/qol/other/GriefAlert.java index da692de..7f1a4c7 100644 --- a/src/main/java/xyz/etztech/qol/other/GriefAlert.java +++ b/src/main/java/xyz/etztech/qol/other/GriefAlert.java @@ -32,18 +32,19 @@ public class GriefAlert implements Runnable { int lines = plugin.getConfig().getInt("grief-alert.lines", 5); if (num < lines) { alert(alert); - if (num == 1) { - String webhook = plugin.getConfig().getString("grief-alert.webhook", ""); - String message = "@here " + alert; - if (StringUtils.isNotEmpty(webhook)) { - Map data = new HashMap<>(); - data.put("username", "Grief Alert"); - data.put("content", message); - CoreWeb.asyncPost(plugin, webhook, data); - } - } } else if (num == lines) { - alert(alert + " Suppressing more alerts for a while..."); + String extra = " Suppressing more alerts for a while"; + String webhook = plugin.getConfig().getString("grief-alert.webhook", ""); + String message = "@here " + alert; + if (StringUtils.isNotEmpty(webhook)) { + extra += " and pinging Discord"; + Map data = new HashMap<>(); + data.put("username", "Grief Alert"); + data.put("content", message); + CoreWeb.asyncPost(plugin, webhook, data); + } + extra += "..."; + alert(alert + extra); } }