Skip to content

Commit e1da284

Browse files
committed
Add support for Minecraft 1.21.7
1 parent ffa1dfa commit e1da284

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

src/main/java/com/laytonsmith/abstraction/blocks/MCMaterial.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1769,7 +1769,10 @@ public enum MCVanillaMaterial {
17691769
YELLOW_HARNESS(MCVersion.MC1_21_6),
17701770
DRIED_GHAST(MCVersion.MC1_21_6),
17711771
HAPPY_GHAST_SPAWN_EGG(MCVersion.MC1_21_6),
1772-
MUSIC_DISC_TEARS(MCVersion.MC1_21_6);
1772+
MUSIC_DISC_TEARS(MCVersion.MC1_21_6),
1773+
1774+
// 1.21.7 additions
1775+
MUSIC_DISC_LAVA_CHICKEN(MCVersion.MC1_21_7);
17731776

17741777
private final MCVersion since;
17751778
private final MCVersion until;

src/main/java/com/laytonsmith/abstraction/enums/MCArt.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ public enum MCVanillaArt {
109109
OWLEMONS(MCVersion.MC1_21),
110110
SUNFLOWERS(MCVersion.MC1_21),
111111
TIDES(MCVersion.MC1_21),
112+
DENNIS(MCVersion.MC1_21_7),
112113
// 4x3
113114
SKELETON,
114115
DONKEY_KONG,

src/main/java/com/laytonsmith/abstraction/enums/MCSound.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1841,6 +1841,9 @@ public enum MCVanillaSound {
18411841
ITEM_SHEARS_SNIP(MCVersion.MC1_21_6),
18421842
MUSIC_DISC_TEARS(MCVersion.MC1_21_6),
18431843

1844+
// 1.21.7 additions
1845+
MUSIC_DISC_LAVA_CHICKEN(MCVersion.MC1_21_7),
1846+
18441847
UNKNOWN(MCVersion.NEVER);
18451848

18461849
private final MCVersion since;

src/main/java/com/laytonsmith/abstraction/enums/MCVersion.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ public enum MCVersion implements Version {
7777
MC1_21_4,
7878
MC1_21_5,
7979
MC1_21_6,
80+
MC1_21_7,
8081
MC1_21_X,
8182
MC1_X,
8283
MC2_X,

src/main/resources/docs/Compatibility

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ In general, the compatibility requirements, if not listed, are the same as the p
33
The minimum requirements for the current builds are:
44

55
* Java 16
6-
* Spigot or Paper 1.16.5 - 1.21.6 (when used as a plugin)
6+
* Spigot or Paper 1.16.5 - 1.21.7 (when used as a plugin)
77

88
CommandHelper may still be backwards and forward compatible to a large degree. Many of the advanced features that
99
normally have hard dependencies on certain versions of external dependencies have been configured to "soft" fail.
@@ -18,8 +18,13 @@ Regardless, only the most current builds are officially supported.
1818
! scope="col" width="63%" | Milestone
1919
! scope="col" width="18%" | Compatibility
2020
|-
21-
| 3.3.5 build-564
21+
| 3.3.5 build-566
2222
|
23+
| Added support for Spigot 1.21.7
24+
| Spigot 1.16.5 - 1.21.7
25+
|-
26+
| 3.3.5 build-564
27+
| [https://github.com/EngineHub/CommandHelper/commit/103f5fce8eb07f8e8b1adeeafb1f3815cf7c7775 103f5fc]
2328
| Added support for Spigot 1.21.6
2429
| Spigot 1.16.5 - 1.21.6
2530
|-

0 commit comments

Comments
 (0)