diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2022-08-09 13:43:20 -0400 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2022-08-09 13:43:20 -0400 |
commit | d64dce4a26b69d202f9d2943da8da0d3bc9ddad2 (patch) | |
tree | 23cef1d812fa41c2185e8ce86b9d176cd950de0b /src/main/resources | |
parent | Merge pull request #72 from tylermurphy534/1.6.0 (diff) | |
download | kenshinshideandseek-d64dce4a26b69d202f9d2943da8da0d3bc9ddad2.tar.gz kenshinshideandseek-d64dce4a26b69d202f9d2943da8da0d3bc9ddad2.tar.bz2 kenshinshideandseek-d64dce4a26b69d202f9d2943da8da0d3bc9ddad2.zip |
block solidify time, seeker lobby
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/config.yml | 10 | ||||
-rw-r--r-- | src/main/resources/lang/localization_de-DE.yml | 1 | ||||
-rw-r--r-- | src/main/resources/lang/localization_en-US.yml | 1 | ||||
-rw-r--r-- | src/main/resources/plugin.yml | 6 |
4 files changed, 17 insertions, 1 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 9500859..b648c8b 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -128,8 +128,11 @@ databaseName: hideandseek # You want block hunt? We have block hunt! Just enable it below, and set the # available blocks to pick from, and you're all set! It's that easy! # Items are displayed in the order that they are listed below. +# The solidifyTime is the time in server ticks that it takes players to solidify. +# Every 20 ticks is a second. Minimum solidifyTime is 20 ticks. blockhunt: enabled: false + solidifyTime: 60 blocks: [CRAFTING_TABLE, GRASS_BLOCK, DIRT, BEACON, BOOKSHELF] worldBorder: @@ -306,6 +309,13 @@ spawns: y: 0 z: 0 world: world + # Location where seekers wait during the hiding grace period + seeker: + x: 0 + y: 0 + z: 0 + # Currently is not used, seekers are teleported to spawns.game.world + world: world # Location where players are teleported when they exit (/hs leave) exit: x: 0 diff --git a/src/main/resources/lang/localization_de-DE.yml b/src/main/resources/lang/localization_de-DE.yml index a1a6eea..4e6e74e 100644 --- a/src/main/resources/lang/localization_de-DE.yml +++ b/src/main/resources/lang/localization_de-DE.yml @@ -46,6 +46,7 @@ Localization: SETUP: "&f&lFühre die folgenden Schritte zur Einrichtung aus:" SETUP_GAME: "&c&l- &fTeleport-Position für den Spielbeginn festlegen mit /hs setspawn" SETUP_LOBBY: "&c&l- &fTeleport-Position für die Lobby festlegen mit /hs setlobby" + SETUP_SEEKER_LOBBY: "&c&l- &fTeleport-Position für die Lobby Seekern festlegen mit /hs setseekerlobby" SETUP_EXIT: "&c&l- &fTeleport-Position für das Spielende festlegen mit /hs setexit" SETUP_SAVEMAP: "&c&l- &fHide and Seek Weltkarte speichern mit /hs savemap (nach /hs setspawn)" SETUP_COMPLETE: "Alles eingerichtet! Hide and Seek ist spielbereit." diff --git a/src/main/resources/lang/localization_en-US.yml b/src/main/resources/lang/localization_en-US.yml index 96ccf7a..32dd5f8 100644 --- a/src/main/resources/lang/localization_en-US.yml +++ b/src/main/resources/lang/localization_en-US.yml @@ -47,6 +47,7 @@ Localization: SETUP: "&f&lThe following is needed for setup..." SETUP_GAME: "&c&l- &fGame spawn isn't set, /hs setspawn" SETUP_LOBBY: "&c&l- &fLobby spawn isn't set, /hs setlobby" + SET_SEEKER_LOBBY: "&c&l- &fSeeker Lobby spawn isn't set, /hs setseekerlobby" SETUP_EXIT: "&c&l- &fQuit/exit teleport location isn't set, /hs setexit" SETUP_SAVEMAP: "&c&l- &fHide and seek map isn't saved, /hs savemap (after /hs setspawn)" SETUP_BOUNDS: "&c&l- &fPlease set game bounds in 2 opposite corners of the game map, /hs setbounds" diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index eab74ad..1f61282 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -1,6 +1,6 @@ name: KenshinsHideAndSeek main: net.tylermurphy.hideAndSeek.Main -version: 1.6.0 +version: 1.6.1 author: KenshinEto load: STARTUP api-version: 1.13 @@ -21,6 +21,7 @@ permissions: hideandseek.setborder: true hideandseek.setspawn: true hideandseek.setlobby: true + hideandseek.setseekerlobby: true hideandseek.setexit: true hideadnseek.setbounds: true hideandseek.setup: true @@ -51,6 +52,9 @@ permissions: hideandseek.setlobby: description: Allows you to set the game lobby point default: op + hideandseek.setseekerlobby: + description: Allows you to set the game seeker lobby point + default: op hideandseek.setexit: description: Allows you to set the game exit point default: op |