Skip to content

Commit

Permalink
Add 1.20.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Flowsqy committed Apr 30, 2024
1 parent d6bc25e commit 6e4452f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion nms/v1_20_R4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<version>1.0.0</version>

<properties>
<spigot.version>1.20.5-R0.1-SNAPSHOT</spigot.version>
<spigot.version>1.20.6-R0.1-SNAPSHOT</spigot.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,12 @@ private Platform getSpecificPlatform(String mappingsVersion) {
case "34f399b4f2033891290b7f0700e9e47b": // 1.20
case "bcf3dcb22ad42792794079f9443df2c0": // 1.20.1 (v1_20_R1)
return new de.epiceric.shopchest.nms.v1_20_R1.PlatformImpl();
case "3478a65bfd04b15b431fe107b3617dfc": //1.20.2
case "3478a65bfd04b15b431fe107b3617dfc": // 1.20.2 (v1_20_R2)
return new de.epiceric.shopchest.nms.v1_20_R2.PlatformImpl();
case "60a2bb6bf2684dc61c56b90d7c41bddc": //1.20.4 (1.20.3 virtually does not exist)
case "60a2bb6bf2684dc61c56b90d7c41bddc": // 1.20.4 (1.20.3 virtually does not exist)
return new de.epiceric.shopchest.nms.v1_20_R3.PlatformImpl();
case "ad1a88fd7eaf2277f2507bf34d7b994c": // 1.20.5
case "ad1a88fd7eaf2277f2507bf34d7b994c": // 1.20.5 (Replaced by 1.20.6)
case "ee13f98a43b9c5abffdcc0bb24154460": // 1.20.6 (v1_20_R4)
return new de.epiceric.shopchest.nms.v1_20_R4.PlatformImpl();
default:
return null;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>1.20.5-R0.1-SNAPSHOT</version>
<version>1.20.6-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit 6e4452f

Please sign in to comment.