Skip to content

Commit

Permalink
Fix deep/ItemStack translations
Browse files Browse the repository at this point in the history
  • Loading branch information
Patbox committed Mar 1, 2023
1 parent c904fff commit ecadd8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ static Text asLocalizedFor(final Text text, final ServerLanguage language, final

var out = MutableText.of(content);
if (translateDeeply) {
for (var sibling : out.getSiblings()) {
for (var sibling : text.getSiblings()) {
out.append(asLocalizedFor(sibling, language, true));
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

class Globals {
static def baseVersion = "2.0.0-beta.1"
static def baseVersion = "2.0.0-beta.2"
static def mcVersion = "1.19.4-pre2"
static def yarnVersion = "+build.1"
}
Expand Down

0 comments on commit ecadd8e

Please sign in to comment.