A Minecraft PaperMC plugin for a private survival server.
0

Configure Feed

Select the types of activity you want to include in your feed.

fix discordHook not initializing

Lukiiy (May 7, 2026, 10:54 AM -0300) d93e4f2f 268e62fc

+1 -1
+1 -1
src/main/java/me/lukiiy/grill/Grill.java
··· 32 32 33 33 private void setupDiscordWebhook() { 34 34 try { 35 - discordHook = new DiscordHook(getConfig().getString("dcwebhook.id"), getConfig().getString("dcwebhook.token")); 35 + discordHook = new DiscordHook(getConfig().getString("dcWebhook.id"), getConfig().getString("dcWebhook.token")); 36 36 } catch (Exception e) { 37 37 discordHook = null; 38 38