Skip to content

Commit

Permalink
refactor!: Update Angel tier to Ascentan tier
Browse files Browse the repository at this point in the history
  • Loading branch information
bconlon1 committed May 4, 2023
1 parent d379174 commit 6d1f22f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Nitrogen
[![Modloader: Forge](https://img.shields.io/badge/mod%20loader-forge-CC974D?style=flat-square)](https://files.minecraftforge.net/net/minecraftforge/forge/)
[![CircleCI](https://circleci.com/gh/The-Aether-Team/Nitrogen/tree/1.19.svg?style=shield)](https://app.circleci.com/pipelines/github/The-Aether-Team/Nitrogen?branch=1.19)
[![Code license (LGPL v3.0)](https://img.shields.io/badge/code%20license-LGPL%20v3.0-green.svg?style=flat-square)](https://github.com/The-Aether-Team/Nitrogen/blob/1.19/LICENSE.txt)
[![CircleCI](https://circleci.com/gh/The-Aether-Team/Nitrogen/tree/1.19.4-develop.svg?style=shield)](https://app.circleci.com/pipelines/github/The-Aether-Team/Nitrogen?branch=1.19.4-develop)
[![Code license (LGPL v3.0)](https://img.shields.io/badge/code%20license-LGPL%20v3.0-green.svg?style=flat-square)](https://github.com/The-Aether-Team/Nitrogen/blob/1.19.4-develop/LICENSE.txt)

Nitrogen is a library mod used by The Aether Team to abstract code that is usable by both Aether I and Aether II to allow for easier maintenance and organization. This library is intended for usage by The Aether Team, and isn't particularly useful to use or possible to contribute to if you're an outside developer. This library will also not be released on CurseForge. This repository is only public for visibility and ease of use for the team.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// 1.19.3 2022-12-31T10:43:55.5758293 Languages: en_us
f020f2307c4342cc11022a98d58487d2e214f776 assets/nitrogen/lang/en_us.json
// 1.19.4 2023-05-04T16:10:44.9050113 Languages: en_us
8ca132a72490e4c04c5849225a5d78ed46b14497 assets/nitrogen/lang/en_us.json
2 changes: 1 addition & 1 deletion src/generated/resources/assets/nitrogen/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"nitrogen.patreon.tier.angel": "Angel",
"nitrogen.patreon.tier.arkenzus": "Arkenzus",
"nitrogen.patreon.tier.ascentan": "Ascentan",
"nitrogen.patreon.tier.human": "Human",
"nitrogen.patreon.tier.valkyrie": "Valkyrie"
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public Type getType() {

public enum Tier {
HUMAN(0, Component.translatable("nitrogen.patreon.tier.human")),
ANGEL(1, Component.translatable("nitrogen.patreon.tier.angel")),
ASCENTAN(1, Component.translatable("nitrogen.patreon.tier.ascentan")),
VALKYRIE(2, Component.translatable("nitrogen.patreon.tier.valkyrie")),
ARKENZUS(3, Component.translatable("nitrogen.patreon.tier.arkenzus"));

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public NitrogenLanguageData(PackOutput output) {
@Override
protected void addTranslations() {
this.addPatreonTier("human", "Human");
this.addPatreonTier("angel", "Angel");
this.addPatreonTier("ascentan", "Ascentan");
this.addPatreonTier("valkyrie", "Valkyrie");
this.addPatreonTier("arkenzus", "Arkenzus");
}
Expand Down

0 comments on commit 6d1f22f

Please sign in to comment.