SPIGOT-6609: Add 1.17 ApiVersion

This commit is contained in:
md_5 2021-06-30 18:53:08 +10:00
parent 6621a16619
commit 0d77a63098
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -49,7 +49,12 @@ public @interface ApiVersion {
/**
* This target version specifies that the plugin was made with 1.16+ versions in mind.
*/
v1_16("1.16");
v1_16("1.16"),
/**
* This target version specifies that the plugin was made with 1.17+ versions in mind.
*/
v1_17("1.17");
private final String version;