Add 1.20.6 support

This commit is contained in:
Flowsqy 2024-04-30 14:25:07 +02:00
parent d6bc25ef3a
commit 6e4452ff56
3 changed files with 6 additions and 5 deletions

View File

@ -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>

View File

@ -93,11 +93,12 @@ public class PlatformLoader {
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;

View File

@ -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>