aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/Features.java6
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<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")
);
}