diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2024-06-12 00:46:56 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2024-06-12 00:46:56 -0400 |
commit | c78d343eed0ff8f37e1f77cfe12fec0d47e47be0 (patch) | |
tree | ed85b36fb57131f9a854852654b5c5d2e158e327 /src/main/resources/config.yml | |
parent | 519cf806ea12fcbfffa6e8fbae0efc0c617b87ed (diff) | |
download | Tumble-c78d343eed0ff8f37e1f77cfe12fec0d47e47be0.tar.gz Tumble-c78d343eed0ff8f37e1f77cfe12fec0d47e47be0.tar.bz2 Tumble-c78d343eed0ff8f37e1f77cfe12fec0d47e47be0.zip |
New config format, kill-at-y setting and more bug fixes
Diffstat (limited to 'src/main/resources/config.yml')
-rw-r--r-- | src/main/resources/config.yml | 45 |
1 files changed, 25 insertions, 20 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index b81d268..b13570e 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -5,35 +5,40 @@ hideJoinLeaveMessages: false wait-duration: 15 # Teleport players somewhere while waiting for the game to start # Keep in mind that these coordinates cannot be zero! Use something like 0.5 instead -enable-wait-area: false wait-area: - x: - y: - z: - world: + enable: false + spawn: + x: + y: + z: + world: # Place where everyone is teleported to after a game ends REQUIRED # Keep in mind that these coordinates cannot be zero! Use something like 0.5 instead -lobby-spawn: - x: 0.5 - y: 100 - z: 0.5 - world: world +lobby: + spawn: + x: 0.5 + y: 100 + z: 0.5 + world: world # Place that the winner is teleported after a game ends # Keep in mind that these coordinates cannot be zero! Use something like 0.5 instead -enable-winner-lobby-spawn: false -winner-lobby-spawn: - x: - y: - z: - world: +winner-lobby: + enable: false + spawn: + x: + y: + z: + world: # Add/remove as you wish # Keep in mind that these coordinates cannot be zero! Use something like 0.5 instead arenas: 'test': - x: 100 - y: 100 - z: 100 - world: world
\ No newline at end of file + kill-at-y: 5 + spawn: + x: 100 + y: 100 + z: 100 + world: world
\ No newline at end of file |