mirror of
https://github.com/JamesPeters98/ChestsPlusPlus.git
synced 2024-11-22 10:36:11 +01:00
Fix 1.20.4 build
This commit is contained in:
parent
20b21098f5
commit
f1742588a7
@ -1,4 +1,4 @@
|
|||||||
package com.jamesdpeters.minecraft.chests.v1_20_R2;
|
package com.jamesdpeters.minecraft.chests.v1_20_R3;
|
||||||
|
|
||||||
import com.jamesdpeters.minecraft.chests.CraftingProvider;
|
import com.jamesdpeters.minecraft.chests.CraftingProvider;
|
||||||
import com.jamesdpeters.minecraft.chests.CraftingResult;
|
import com.jamesdpeters.minecraft.chests.CraftingResult;
|
@ -1,4 +1,4 @@
|
|||||||
package com.jamesdpeters.minecraft.chests.v1_20_R2;
|
package com.jamesdpeters.minecraft.chests.v1_20_R3;
|
||||||
|
|
||||||
import com.jamesdpeters.minecraft.chests.ChestOpener;
|
import com.jamesdpeters.minecraft.chests.ChestOpener;
|
||||||
import com.jamesdpeters.minecraft.chests.CraftingProvider;
|
import com.jamesdpeters.minecraft.chests.CraftingProvider;
|
@ -72,6 +72,20 @@
|
|||||||
<version>2.2.1</version>
|
<version>2.2.1</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.jamesdpeters.minecraft.chests</groupId>
|
||||||
|
<artifactId>ChestsPlusPlus_1_20_R3</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.jamesdpeters.minecraft.chests</groupId>
|
||||||
|
<artifactId>ChestsPlusPlus_1_20_R2</artifactId>
|
||||||
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<scope>compile</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>com.jamesdpeters.minecraft.chests</groupId>
|
<groupId>com.jamesdpeters.minecraft.chests</groupId>
|
||||||
<artifactId>ChestsPlusPlus_1_20_R1</artifactId>
|
<artifactId>ChestsPlusPlus_1_20_R1</artifactId>
|
||||||
@ -149,12 +163,6 @@
|
|||||||
<version>1.18.22</version>
|
<version>1.18.22</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>com.jamesdpeters.minecraft.chests</groupId>
|
|
||||||
<artifactId>ChestsPlusPlus_1_20_R2</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<scope>compile</scope>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
@ -24,6 +24,7 @@ public class NMSProviderDefault implements NMSProvider {
|
|||||||
case "v1_19_R1" -> defaultProvider = new com.jamesdpeters.minecraft.chests.v1_19_R1.NMSProviderImpl();
|
case "v1_19_R1" -> defaultProvider = new com.jamesdpeters.minecraft.chests.v1_19_R1.NMSProviderImpl();
|
||||||
case "v1_20_R1" -> defaultProvider = new com.jamesdpeters.minecraft.chests.v1_20_R1.NMSProviderImpl();
|
case "v1_20_R1" -> defaultProvider = new com.jamesdpeters.minecraft.chests.v1_20_R1.NMSProviderImpl();
|
||||||
case "v1_20_R2" -> defaultProvider = new com.jamesdpeters.minecraft.chests.v1_20_R2.NMSProviderImpl();
|
case "v1_20_R2" -> defaultProvider = new com.jamesdpeters.minecraft.chests.v1_20_R2.NMSProviderImpl();
|
||||||
|
case "v1_20_R3" -> defaultProvider = new com.jamesdpeters.minecraft.chests.v1_20_R3.NMSProviderImpl();
|
||||||
default -> {
|
default -> {
|
||||||
ChestsPlusPlus.PLUGIN.getLogger().severe("§c=======================================================");
|
ChestsPlusPlus.PLUGIN.getLogger().severe("§c=======================================================");
|
||||||
ChestsPlusPlus.PLUGIN.getLogger().severe("§cThis version is not supported. Please update your server or the plugin!");
|
ChestsPlusPlus.PLUGIN.getLogger().severe("§cThis version is not supported. Please update your server or the plugin!");
|
||||||
|
Loading…
Reference in New Issue
Block a user