mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
some more master-related fixes
This commit is contained in:
parent
ff916f75f1
commit
f7cc9b9ae3
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
||||
## 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 {
|
||||
maven {
|
||||
|
|
|
@ -91,7 +91,7 @@ public class SupporterFancyHandler {
|
|||
@Override
|
||||
public void run() {
|
||||
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()));
|
||||
JsonParser parser = new JsonParser();
|
||||
|
||||
|
|
Loading…
Reference in a new issue