From 9630260fca6cb568b3ffdf01eaf619d8ac7d119b Mon Sep 17 00:00:00 2001 From: Niklas Eicker Date: Sat, 18 Apr 2020 15:48:20 +0200 Subject: [PATCH] Correct url of github organisation (resolves #1) --- _data/topnav.yml | 2 +- _docs/gamebox/getting-started/about.md | 2 +- _docs/gamebox/modules/internationalisation.md | 4 ++-- _docs/gamebox/modules/my-first-module.md | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/_data/topnav.yml b/_data/topnav.yml index 821cb9b..8c81368 100644 --- a/_data/topnav.yml +++ b/_data/topnav.yml @@ -6,7 +6,7 @@ topnav: - title: Discord external_url: http://discord.hygames.co - title: GitHub - external_url: https://github.com/hygames-team + external_url: https://github.com/hygames - title: News url: /news diff --git a/_docs/gamebox/getting-started/about.md b/_docs/gamebox/getting-started/about.md index 6f2a066..3034b5e 100644 --- a/_docs/gamebox/getting-started/about.md +++ b/_docs/gamebox/getting-started/about.md @@ -11,6 +11,6 @@ folder: getting_started GameBox is software that can add a verity of games to a [Hytale](https://www.hytale.com){: target="_blank"} server. It is work in progress, as is Hytale itself! -The code is open source and can be found [on GitHub](https://www.github.com/hygames-team/gamebox){: target="_blank"}. Contributions in the form of issue reports, fixes or new functionality are always welcome! You are welcome to join the community on the [discord server](http://discord.hygames.co){: target="_blank"} to get up to date information on the development progress. +The code is open source and can be found [on GitHub](https://www.github.com/hygames/gamebox){: target="_blank"}. Contributions in the form of issue reports, fixes or new functionality are always welcome! You are welcome to join the community on the [discord server](http://discord.hygames.co){: target="_blank"} to get up to date information on the development progress. {% include note.html content="**WIP** The documentation on this site is being updated in parallel to development. Nothing should be taken as final!" %} diff --git a/_docs/gamebox/modules/internationalisation.md b/_docs/gamebox/modules/internationalisation.md index cdc86b9..193ea08 100644 --- a/_docs/gamebox/modules/internationalisation.md +++ b/_docs/gamebox/modules/internationalisation.md @@ -19,6 +19,6 @@ Files can be automatically loaded from either the language directory of the modu {% include note.html content='At the moment [ModuleLanguage] loads the "lang_en.yml" file from the jar as a first default language.' %} -An example using Enums to make all messages easily accessible can be seen in the [template module](https://github.com/hygames-team/gamebox-module-template/blob/master/src/main/java/co/hygames/gamebox/modules/template/TemplateLanguage.java). +An example using Enums to make all messages easily accessible can be seen in the [template module](https://github.com/hygames/gamebox-module-template/blob/master/src/main/java/co/hygames/gamebox/modules/template/TemplateLanguage.java). -[ModuleLanguage]: https://github.com/hygames-team/gamebox/blob/master/src/main/java/co/hygames/gamebox/language/ModuleLanguage.java +[ModuleLanguage]: https://github.com/hygames/gamebox/blob/master/src/main/java/co/hygames/gamebox/language/ModuleLanguage.java diff --git a/_docs/gamebox/modules/my-first-module.md b/_docs/gamebox/modules/my-first-module.md index d775f07..8eb0c5b 100644 --- a/_docs/gamebox/modules/my-first-module.md +++ b/_docs/gamebox/modules/my-first-module.md @@ -42,7 +42,7 @@ A module's entry point is a class extending ```co.hygames.gamebox.module.GameBox ## Template module -[A template module](https://github.com/hygames-team/gamebox-module-template){: target='_blank'} is available on GitHub. The code can be used as a basis for any of your own modules. +[A template module](https://github.com/hygames/gamebox-module-template){: target='_blank'} is available on GitHub. The code can be used as a basis for any of your own modules. ## Locally testing your module