diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-06-17 13:32:02 +0100 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-06-17 13:32:02 +0100 |
| commit | af7e1e435f577bbf9742bb526ac00a71a21c219c (patch) | |
| tree | 0d0b4cff2dd42721e7673a518394084ea67d90ee /bukkit/src/main/resources/plugin.yml | |
| parent | 5c3d30840bb62c047f077d9ec1cec6b8572cc17b (diff) | |
Convert to multi module project
- Common module to provide an abstract Quests plugin
- Api is still todo
Diffstat (limited to 'bukkit/src/main/resources/plugin.yml')
| -rw-r--r-- | bukkit/src/main/resources/plugin.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/bukkit/src/main/resources/plugin.yml b/bukkit/src/main/resources/plugin.yml new file mode 100644 index 00000000..5cb81473 --- /dev/null +++ b/bukkit/src/main/resources/plugin.yml @@ -0,0 +1,30 @@ +name: Quests + +# This will be replaced with the property "version" in build.gradle +version: ${version} + +main: com.leonardobishop.quests.bukkit.BukkitQuestsPlugin +website: https://github.com/LMBishop/Quests +author: "LMBishop & contributors" +softdepend: [ASkyBlock, BentoBox, IridiumSkyblock, uSkyBlock, Citizens, MythicMobs, PlaceholderAPI, Essentials, ShopGUIPlus, CoreProtect] +prefix: Quests +api-version: "1.13" # allows new API features but Quests will still work pre-1.13 + +commands: + quests: + description: Interact with your quests + usage: /quests + permission: quests.command + aliases: [q, quest] + +#todo redo perms +permissions: + quests.command: + description: Permission for main command + default: true + quests.command.random: + description: Permission to execute /q random + default: true + quests.admin: + description: Permission for the admin commands + default: op
\ No newline at end of file |
