some more master-related fixes

This commit is contained in:
Ell 2020-11-07 00:55:38 +01:00
parent ff916f75f1
commit f7cc9b9ae3
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
Nature's Aura is a mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics. Nature's Aura is a mod about collecting, using and replenishing the Aura naturally present in the world to create useful devices and unique mechanics.
## Maven ## Maven
To add this project as a dependency (for using the [API](https://github.com/Ellpeck/NaturesAura/tree/master/src/main/java/de/ellpeck/naturesaura/api), for example), put this into your `build.gradle` file: To add this project as a dependency (for using the [API](https://github.com/Ellpeck/NaturesAura/tree/main/src/main/java/de/ellpeck/naturesaura/api), for example), put this into your `build.gradle` file:
``` ```
repositories { repositories {
maven { maven {

View file

@ -91,7 +91,7 @@ public class SupporterFancyHandler {
@Override @Override
public void run() { public void run() {
try { try {
URL url = new URL("https://raw.githubusercontent.com/Ellpeck/NaturesAura/master/supporters.json"); URL url = new URL("https://raw.githubusercontent.com/Ellpeck/NaturesAura/main/supporters.json");
JsonReader reader = new JsonReader(new InputStreamReader(url.openStream())); JsonReader reader = new JsonReader(new InputStreamReader(url.openStream()));
JsonParser parser = new JsonParser(); JsonParser parser = new JsonParser();