Skip to content

Commit

Permalink
Add 1.21.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
BoomEaro committed Aug 27, 2024
1 parent 1deeca2 commit afb534c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ LangHelper - это простой API плагин, который позвол
1.18.2,
1.19.4
1.20.6
1.21
1.21.1

Плагин поддерживает все языки которые поддерживает сам Minecraft.
При первом включении, плагин скачает с сервера Mojang поддерживаемые языки в папку LangHelper/languages/'версия'/
Expand Down
2 changes: 1 addition & 1 deletion nms/1_21_R1/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dependencies {
compileOnly project(":common")
compileOnly "org.spigotmc:spigot:1.21-R0.1-SNAPSHOT"
compileOnly "org.spigotmc:spigot:1.21.1-R0.1-SNAPSHOT"
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
public class Translate1_21_R1 extends JsonTranslateManager {

public Translate1_21_R1(Plugin plugin, ConfigManager configManager) {
super("1.21", plugin, configManager);
super("1.21.1", plugin, configManager);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class LangHelper extends JavaPlugin {
new TranslationVersionWrapper("1.18.2", Translate1_18_R2.class),
new TranslationVersionWrapper("1.19.4", Translate1_19_R3.class),
new TranslationVersionWrapper("1.20.6", Translate1_20_R4.class),
new TranslationVersionWrapper("1.21", Translate1_21_R1.class)
new TranslationVersionWrapper("1.21.1", Translate1_21_R1.class)
);

@Override
Expand Down

0 comments on commit afb534c

Please sign in to comment.