Add 1.21.1 support

This commit is contained in:
tastybento 2024-08-11 16:34:31 -07:00
parent 137622fcae
commit d3123a75bb
3 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,8 @@
package world.bentobox.bentobox.nms.v1_21_1_R0_1_SNAPSHOT;
/**
* Same as 1.21
*/
public class PasteHandlerImpl extends world.bentobox.bentobox.nms.v1_21_R0_1_SNAPSHOT.PasteHandlerImpl {
// Do nothing special
}

View File

@ -0,0 +1,8 @@
package world.bentobox.bentobox.nms.v1_21_1_R0_1_SNAPSHOT;
/**
* Same as 1.21
*/
public class WorldRegeneratorImpl extends world.bentobox.bentobox.nms.v1_21_R0_1_SNAPSHOT.WorldRegeneratorImpl {
// Do nothing special
}

View File

@ -245,7 +245,11 @@ public class ServerCompatibility {
/**
* @since 2.4.0
*/
V1_21(Compatibility.COMPATIBLE);
V1_21(Compatibility.COMPATIBLE),
/**
* @since 2.5.0
*/
V1_21_1(Compatibility.COMPATIBLE);
private final Compatibility compatibility;