9
0
mirror of https://github.com/HibiscusMC/HibiscusCommons.git synced 2025-12-28 11:29:21 +00:00

feat: add 1.21.3 support

This commit is contained in:
Boy
2024-11-01 22:45:35 +01:00
parent df4662fe40
commit a8870f7ae4
10 changed files with 33 additions and 30 deletions

View File

@@ -11,13 +11,13 @@ import java.util.LinkedHashMap;
public class NMSHandlers {
private static final LinkedHashMap<String, String> VERSION_MAP = new LinkedHashMap <>() {{
put("1.19.4", "v1_19_R3");
put("1.20.1", "v1_20_R1");
put("1.20.2", "v1_20_R2");
put("1.20.4", "v1_20_R3");
put("1.20.6", "v1_20_R4");
put("1.21", "v1_21_R1");
put("1.21.1", "v1_21_R1");
put("1.21.3", "v1_21_R3");
}};
private static NMSHandler handler;
@Getter