diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-21 00:31:57 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-21 00:31:57 +0100 |
commit | 3a309af2d544a98080645143dcef36dfd1b5633b (patch) | |
tree | 273cb050b99a52bc88559c1f00e2b431239ce1ee /src | |
parent | aecd1898ddb6db4c1727e98b9b0d7d974c269f7a (diff) | |
download | skyhanni-3a309af2d544a98080645143dcef36dfd1b5633b.tar.gz skyhanni-3a309af2d544a98080645143dcef36dfd1b5633b.tar.bz2 skyhanni-3a309af2d544a98080645143dcef36dfd1b5633b.zip |
Added a Patreon because my sister and a good friend were bugging me to do so.
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/Features.java | 6 |
1 files changed, 4 insertions, 2 deletions
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<Social> 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") ); } |