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. --- README.md | 4 ++++ src/main/java/at/hannibal2/skyhanni/config/Features.java | 6 ++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e1c95c8e..3452be127 100644 --- a/README.md +++ b/README.md @@ -28,4 +28,8 @@ our [Discord](https://discord.gg/skyhanni-997079228510117908). If you are interested in the technical side of SkyHanni, read the [Contributing Guide](https://github.com/hannibal002/SkyHanni/blob/beta/CONTRIBUTING.md). +Please support me on [Patreon](https://www.patreon.com/hannibal2). +(*Guys I need money to eat* ~Forrick) + + *Check out some other really cool 1.8.9 mods [here](https://sbmw.ca/mod-lists/skyblock-mod-list/)* 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