diff options
author | Myles <43725835+MylesAndMore@users.noreply.github.com> | 2022-12-27 12:52:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-27 12:52:12 -0600 |
commit | 941d1348d53ac960d510663f6c155399436cea98 (patch) | |
tree | 8f0754bdeac540e8df595f359aa2974f9ad57391 /src/main | |
parent | c8405442961580a5c99a74aa9f022e3a8b4fa922 (diff) | |
download | Tumble-941d1348d53ac960d510663f6c155399436cea98.tar.gz Tumble-941d1348d53ac960d510663f6c155399436cea98.tar.bz2 Tumble-941d1348d53ac960d510663f6c155399436cea98.zip |
merge alpha changes #2
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/resources/plugin.yml | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 6e2b75b..a5e2e55 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.1 +version: 1.0.2 description: 'A Minecraft: Java Edition plugin recreating the Tumble minigame from Minecraft Legacy Console Edition.' api-version: 1.19 load: STARTUP @@ -12,39 +12,39 @@ commands: reload: description: Reloads the plugin's config. usage: '§cUsage: /tumble:reload' - permission: reload + permission: tumble.reload link: description: Links a world on the server as a lobby/game world. usage: '§cUsage: /tumble:link <world> (lobby|game)' - permission: link + permission: tumble.link aliases: [linkworld, link-world] start: description: Force starts a Tumble match with an optional game type. usage: '§cUsage: /tumble:start [gameType]' - permission: start + permission: tumble.start winlocation: description: Links the location to teleport the winning player of a game. usage: '§cUsage: /tumble:winlocation [x] [y] [z]' - permission: winlocation + permission: tumble.winlocation aliases: [win-location, winloc, win-loc] autostart: description: Configures the auto start functions of Tumble. usage: '§cUsage: /tumble:autostart <playerAmount> [enable|disable]' - permission: autostart + permission: tumble.autostart aliases: [auto-start] permissions: - reload: + tumble.reload: description: Allows you to reload the plugin's config. default: op - link: + tumble.link: description: Allows you to link a world on the server as a lobby/game world. default: op - start: + tumble.start: description: Allows you to start a Tumble match. default: op - winlocation: + tumble.winlocation: description: Allows you to link a win location. default: op - autostart: + tumble.autostart: description: Allows you to set the autostart details of Tumble. default: op |