diff options
author | Myles <43725835+MylesAndMore@users.noreply.github.com> | 2023-06-17 20:48:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-17 20:48:51 +0200 |
commit | ee11892063a796c602948676be4de22d3f717131 (patch) | |
tree | b15435cb788f0a221a7393739908b4c84baa51ad /src/main/resources/config.yml | |
parent | 3c48bd3f9587ae9459d789f70ba1ebaaf691209b (diff) | |
parent | 19d8ffbc6659c7de13b81a587dae7081078649c6 (diff) | |
download | Tumble-ee11892063a796c602948676be4de22d3f717131.tar.gz Tumble-ee11892063a796c602948676be4de22d3f717131.tar.bz2 Tumble-ee11892063a796c602948676be4de22d3f717131.zip |
Merge pull request #7 from MylesAndMore/dev
refactoring!
Diffstat (limited to 'src/main/resources/config.yml')
-rw-r--r-- | src/main/resources/config.yml | 28 |
1 files changed, 10 insertions, 18 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index ee2a2c7..68b4e3d 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -1,32 +1,24 @@ -# Customize the default game mode of Tumble -# Acceptable options include: shovels, snowballs, mixed -# Default is mixed +# Customize the default game mode; options include: shovels, snowballs, mixed gameMode: mixed -# Hides join/leave messages in public chat -# Default is false +# Customize the auto start feature of Tumble; players can be up to 8 +autoStart: + enabled: false + players: 2 + +# Hides player join/leave messages in public chat hideJoinLeaveMessages: false # 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! -# Customize the auto start feature of Tumble -# Defaults are false and two players -# Players can be up to 8 -autoStart: - enabled: false - players: 2 - # Customize the place that the winner is teleported after a game ends -# Keep in mind that these coordinates cannot be zero! The teleport will fail if any of them are; use something like 0.5 instead. -# These are optional values--defaults are nothing +# Keep in mind that these coordinates cannot be zero! The teleport will fail if any of them are; use something like 0.5 instead winnerTeleport: x: y: z: -# This tells the plugin which worlds it should use as the lobby/game worlds -# Do NOT change unless you know what you're doing!! -# Will be blank by default +# The plugin will populate these fields automatically lobbyWorld: -gameWorld:
\ No newline at end of file +gameWorld:
\ No newline at end of file |