diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-07-01 03:38:14 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-07-01 03:38:14 -0400 |
commit | 3b63c0e4ef7b14fd89d94170e5e6aa683374f0f8 (patch) | |
tree | ac1878a32993103a0af6bdc6fbca7531e72525d7 /src/main/resources | |
parent | e1c1d130937c0e56535f8ab20fa0b2719b759a01 (diff) | |
download | Tumble-3b63c0e4ef7b14fd89d94170e5e6aa683374f0f8.tar.gz Tumble-3b63c0e4ef7b14fd89d94170e5e6aa683374f0f8.tar.bz2 Tumble-3b63c0e4ef7b14fd89d94170e5e6aa683374f0f8.zip |
Various fixes
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/language.yml | 3 | ||||
-rw-r--r-- | src/main/resources/plugin.yml | 29 |
2 files changed, 21 insertions, 11 deletions
diff --git a/src/main/resources/language.yml b/src/main/resources/language.yml index e48023b..7b67114 100644 --- a/src/main/resources/language.yml +++ b/src/main/resources/language.yml @@ -11,6 +11,9 @@ not-for-console: "&4This cannot be run by the console" game-in-progress: "&4This game is still in progress!&7 wait until it finishes or join another game" another-type-in-arena: "A game of %type% is currently taking place in this arena!&7 choose another arena or join it with &a/tmbl join %arena% %type%" already-in-game: "&4You are already in a game! Leave it to join another one." +arena-not-ready: "&4This arena is not finished being set up" +arena-not-ready-op: "&4Incomplete arena. &7Set a game spawn with /tmbl setGameSpawn" +specify-game-type: "&4No game is currently taking place in this arena, provide the game type to start one" create-success: "&aArena created successfully! &eBefore you can join, you must set a game spawn location with /tmbl setGameSpawn" forcestart-success: "&aStarting game." diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index ed246c5..feac687 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -10,9 +10,8 @@ softdepend: [Multiverse-Core] commands: tumble: - description: Joins a Tumble match. - usage: '§cUsage: /tumble' - permission: tumble.join + description: Base command for Rumble + usage: "/tmbl <subCommand> ..." aliases: tmbl permissions: @@ -22,16 +21,24 @@ permissions: tumble.leave: description: Allows you to leave a Tumble match. default: true - tumble.forcestart: - description: Allows you to force start a Tumble match. + tumble.forceStart: default: op - tumble.forcestop: - description: Allows you to force stop a Tumble match. - default: op - tumble.config: - description: Allows you to get a notification if Tumble is out of date. + tumble.forceStop: default: op tumble.reload: - description: Allows you to reload the plugin's config. + default: op + tumble.create: + default: op + tumble.remove: + default: op + tumble.setGameSpawn: + default: op + tumble.setKillYLevel: + default: op + tumble.setLobby: + default: op + tumble.setWaitArea: + default: op + tumble.setWinnerLobby: default: op |