Skip to content

Commit

Permalink
Change one detail
Browse files Browse the repository at this point in the history
  • Loading branch information
Elikill58 committed Oct 29, 2024
1 parent 7ac4d59 commit 5060c6f
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 @@ -10,7 +10,7 @@
public class Version1_21 extends NamedVersion {

public Version1_21() {
super("1.20.5");
super("1.21");
// packets ID seems not same as 1.20
int i = 0;
for (Client type : Arrays.asList(Client.TELEPORT_ACCEPT, Client.TILE_NBT_QUERY, Client.DIFFICULTY_CHANGE,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public TranslationProvider createTranslationProvider(String language) {
continue;
}

for (String line : Files.readAllLines(file)) {
for (String line : Files.readAllLines(file, StandardCharsets.UTF_8)) {
concatenatedBundles.append(line);
// Make sure we have a new line between concatenated files
concatenatedBundles.append(System.lineSeparator());
Expand Down

0 comments on commit 5060c6f

Please sign in to comment.