diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2022-08-16 20:08:04 -0400 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2022-08-16 20:08:04 -0400 |
commit | 0bbf648c458edfa189f5edbd5615544c4040b684 (patch) | |
tree | 12d39d7e1e2c09e0db81c7c3d1313ec79b01991a /src/main/resources | |
parent | Fix Board Join Exceptions on 1.8, and fixed Failed to Select Seeker (diff) | |
download | kenshinshideandseek-0bbf648c458edfa189f5edbd5615544c4040b684.tar.gz kenshinshideandseek-0bbf648c458edfa189f5edbd5615544c4040b684.tar.bz2 kenshinshideandseek-0bbf648c458edfa189f5edbd5615544c4040b684.zip |
delayed respawn
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/config.yml | 8 | ||||
-rw-r--r-- | src/main/resources/lang/localization_de-DE.yml | 1 | ||||
-rw-r--r-- | src/main/resources/lang/localization_en-US.yml | 1 |
3 files changed, 10 insertions, 0 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index b648c8b..1d61cdc 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -100,6 +100,14 @@ mapSaveEnabled: true # default: false saveInventory: false +# By default, if you die in game, you will have to wait [delay] seconds until you respawn. This make is so that if you are killed as a seeker, you cannot +# instally go to where the Hider that killed you was. Or if you were a Hider and died, you cant instally go to where you know other Hiders are. It gives some +# breathing room. This can be disabled. +# default: true +delayedRespawn: + enabled: true + delay: 5 + # How you want to store game data. If you are running a single server, sqlite is fine, as no setup is necessary. # But if you want the data to go across multiple servers, you can switch it to mysql. # WARNING: Data is not saved across databases. You have to migrate the data yourself! diff --git a/src/main/resources/lang/localization_de-DE.yml b/src/main/resources/lang/localization_de-DE.yml index 4e6e74e..75523b2 100644 --- a/src/main/resources/lang/localization_de-DE.yml +++ b/src/main/resources/lang/localization_de-DE.yml @@ -74,6 +74,7 @@ Localization: BLOCKED_COMMAND: "Command blocked by Kenshin's Hide And Seek" FLYING_ENABLED: "Fliegen aktiviert" FLYING_DISABLED: "Fliegen deaktiviert" + RESPAWN_NOTICE: "Du wirst in {AMOUNT} Sekunden respawnen." # DO NOT EDIT IT OR IT MAY BREAK OR RESET FILE version: 3 diff --git a/src/main/resources/lang/localization_en-US.yml b/src/main/resources/lang/localization_en-US.yml index ef3fe88..02bc942 100644 --- a/src/main/resources/lang/localization_en-US.yml +++ b/src/main/resources/lang/localization_en-US.yml @@ -75,6 +75,7 @@ Localization: BLOCKED_COMMAND: "Command blocked by Hide And Seek plugin." FLYING_ENABLED: "&l&bFlying Enabled" FLYING_DISABLED: "&l&bFlying Disabled" + RESPAWN_NOTICE: "You will respawn in {AMOUNT} seconds." # DO NOT EDIT IT OR IT MAY BREAK OR RESET FILE version: 3 |