diff options
author | Myles <mylesandmore9@gmail.com> | 2024-08-01 00:45:40 -0500 |
---|---|---|
committer | Myles <mylesandmore9@gmail.com> | 2024-08-01 00:45:40 -0500 |
commit | b9295115ff968b3d6d941ac3af91afe598420202 (patch) | |
tree | 448cfea72c58ad9faf2e487d86ac4e72463ed7fc /src/main/resources/plugin.yml | |
parent | 908e3347eafb1c5c2d214dc434b9bb0a07133444 (diff) | |
download | Tumble-b9295115ff968b3d6d941ac3af91afe598420202.tar.gz Tumble-b9295115ff968b3d6d941ac3af91afe598420202.tar.bz2 Tumble-b9295115ff968b3d6d941ac3af91afe598420202.zip |
standardize style and language
- standardize code style across PR
- change some language/fix typos in documentation (code + external)
Diffstat (limited to 'src/main/resources/plugin.yml')
-rw-r--r-- | src/main/resources/plugin.yml | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index c8085b8..da7f8bd 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,6 +1,6 @@ main: com.MylesAndMore.Tumble.Main name: Tumble -version: 1.0.4 +version: 2.0.0 description: 'A Minecraft: Java Edition plugin recreating the Tumble minigame from Minecraft Legacy Console Edition.' api-version: 1.16 load: POSTWORLD @@ -10,8 +10,8 @@ softdepend: [Multiverse-Core] commands: tumble: - description: Base command for Rumble - usage: "/tmbl <subCommand> ..." + description: Base command for Tumble + usage: "/tumble <subCommand> ..." aliases: tmbl permissions: @@ -22,23 +22,33 @@ permissions: description: Allows you to leave a Tumble match. default: true tumble.forcestart: + description: Allows you to forcibly start a Tumble match. default: op tumble.forcestop: + description: Allows you to forcibly stop a Tumble match. default: op tumble.reload: + description: Allows you to reload the Tumble configuration. default: op tumble.create: + description: Allows you to create Tumble arenas. default: op tumble.remove: + description: Allows you to remove Tumble arenas. default: op tumble.setgamespawn: + description: Allows you to set the game spawn location for Tumble arenas. default: op tumble.setkillylevel: + description: Allows you to set the kill Y-level for Tumble arenas. default: op tumble.setlobby: + description: Allows you to set the lobby location for Tumble arenas. default: op tumble.setwaitarea: + description: Allows you to set the wait area location for Tumble arenas. default: op tumble.setwinnerlobby: + description: Allows you to set the winner lobby location for Tumble arenas. default: op |