Commits

md_5 authored ef842b72bb3
Feature flag end date should be exclusive
No tags

src/main/java/org/bukkit/FeatureFlag.java

Modified
7 7 * <br>
8 8 * Flags which are unavailable in the current version will be null and/or
9 9 * removed.
10 10 */
11 11 @ApiStatus.Experimental
12 12 public interface FeatureFlag extends Keyed {
13 13
14 14 public static final FeatureFlag VANILLA = Bukkit.getUnsafe().getFeatureFlag(NamespacedKey.minecraft("vanilla"));
15 15
16 16 /**
17 - * <strong>AVAILABLE BETWEEN VERSIONS:</strong> 1.19.3 - 1.21.2
17 + * <strong>AVAILABLE BETWEEN VERSIONS:</strong> 1.19.3 - 1.21.1
18 18 *
19 19 * @deprecated not available since 1.21.2
20 20 */
21 21 @Deprecated
22 22 public static final FeatureFlag BUNDLE = Bukkit.getUnsafe().getFeatureFlag(NamespacedKey.minecraft("bundle"));
23 23
24 24 /**
25 25 * <strong>AVAILABLE BETWEEN VERSIONS:</strong> 1.19 - 1.19.4
26 26 *
27 27 * @deprecated not available since 1.20

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut