diff options
author | Myles <mylesandmore9@gmail.com> | 2022-11-26 00:20:30 -0600 |
---|---|---|
committer | Myles <mylesandmore9@gmail.com> | 2022-11-26 00:20:30 -0600 |
commit | f59d07b387472e762889a60b3eed2d0811d40ebb (patch) | |
tree | bb5bce127039151db58e93e5bac90aa0e1ad608f /src/main/resources | |
parent | 5e4966b2ad96ef56fc9d0ad7dba2c61ffdedafae (diff) | |
download | Tumble-f59d07b387472e762889a60b3eed2d0811d40ebb.tar.gz Tumble-f59d07b387472e762889a60b3eed2d0811d40ebb.tar.bz2 Tumble-f59d07b387472e762889a60b3eed2d0811d40ebb.zip |
add world config command
PLEASE I JUST WANT TO GO TO BED
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/config.yml | 7 | ||||
-rw-r--r-- | src/main/resources/plugin.yml | 16 |
2 files changed, 18 insertions, 5 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 232f4a7..d9b51ae 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -3,4 +3,9 @@ hideJoinLeaveMessages: true # Customize the message that displays when the player does not have permission to execute a command from this plugin -permissionMessage: You do not have permission to perform this command!
\ No newline at end of file +permissionMessage: You do not have permission to perform this command! + +# This tells the plugin which worlds it should use as the lobby/game worlds +# Do NOT change unless you know what you're doing!! +lobbyWorld: +gameWorld:
\ No newline at end of file diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index 28423cf..f5c06e3 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -10,10 +10,18 @@ depend: - Multiverse-Core commands: reload: - description: Base constructor for /tumble commands - usage: /tumble <command> - permission: tumble + description: Reloads the plugin's config. + usage: /tumble:reload + permission: reload + setworld: + description: Sets a world on the server as a lobby/game world. + usage: /tumble:setworld <world> lobby|game + permission: setworld + aliases: [set-world] permissions: reload: description: Allows you to reload the plugin's config. - default: false
\ No newline at end of file + default: op + setworld: + description: Allows you to set a world on the server as a lobby/game world. + default: op |