diff options
author | Luck <git@lucko.me> | 2019-04-24 10:20:14 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2019-04-24 10:20:42 +0100 |
commit | d147dbb147c081520ae44aa9e7bd85f759e30a1d (patch) | |
tree | 0731b2c6c12792e3710d1e7c797d789a642bcb54 /spark-bukkit/src/main | |
parent | 479ff0d538de762ea0c7b10be1ce8ca327181370 (diff) | |
download | spark-d147dbb147c081520ae44aa9e7bd85f759e30a1d.tar.gz spark-d147dbb147c081520ae44aa9e7bd85f759e30a1d.tar.bz2 spark-d147dbb147c081520ae44aa9e7bd85f759e30a1d.zip |
Add api-version property to Bukkit plugin.yml
Diffstat (limited to 'spark-bukkit/src/main')
-rw-r--r-- | spark-bukkit/src/main/resources/plugin.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spark-bukkit/src/main/resources/plugin.yml b/spark-bukkit/src/main/resources/plugin.yml index 6e7608f..d46c54a 100644 --- a/spark-bukkit/src/main/resources/plugin.yml +++ b/spark-bukkit/src/main/resources/plugin.yml @@ -4,6 +4,11 @@ description: ${pluginDescription} authors: [Luck, sk89q] main: me.lucko.spark.bukkit.SparkBukkitPlugin +# Mark the plugin as 1.13 compatible to avoid CB having to perform quite as much unnecessary +# remapping when the plugin is loaded. Note that despite what this setting might otherwise imply, +# spark is still compatible with pre-1.13 releases. +api-version: 1.13 + commands: spark: description: Main plugin command
\ No newline at end of file |