From 3a309af2d544a98080645143dcef36dfd1b5633b Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 21 Dec 2023 00:31:57 +0100 Subject: Added a Patreon because my sister and a good friend were bugging me to do so. --- src/main/java/at/hannibal2/skyhanni/config/Features.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java index e4f9e548e..ded615520 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Features.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java @@ -36,6 +36,7 @@ import java.util.List; public class Features extends Config { public static final ResourceLocation DISCORD = new ResourceLocation("notenoughupdates:social/discord.png"); public static final ResourceLocation GITHUB = new ResourceLocation("notenoughupdates:social/github.png"); + public static final ResourceLocation PATREON = new ResourceLocation("notenoughupdates:social/patreon.png"); @Override public boolean shouldAutoFocusSearchbar() { @@ -45,8 +46,9 @@ public class Features extends Config { @Override public List getSocials() { return Arrays.asList( - Social.forLink("Join our Discord", DISCORD, "https://discord.com/invite/skyhanni-997079228510117908"), - Social.forLink("Look at the code", GITHUB, "https://github.com/hannibal002/SkyHanni") + Social.forLink("Discord", DISCORD, "https://discord.com/invite/skyhanni-997079228510117908"), + Social.forLink("GitHub", GITHUB, "https://github.com/hannibal002/SkyHanni"), + Social.forLink("Patreon", PATREON, "https://www.patreon.com/hannibal2") ); } -- cgit