diff options
Diffstat (limited to 'src/main/resources')
-rw-r--r-- | src/main/resources/config.yml | 13 | ||||
-rw-r--r-- | src/main/resources/maps.yml | 2 | ||||
-rw-r--r-- | src/main/resources/plugin.yml | 4 |
3 files changed, 18 insertions, 1 deletions
diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 82b9379..5316402 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -6,6 +6,11 @@ # +--------------------------------------------------------+ # #============================================================# +# If you are having weird issues with your server where it's printing to the console +# "--- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH", try enabling the +# below spawn patch. WARNING: this will NOT work if you use Multiverse Inventory's. +spawnPatch: false + # How long in seconds will the game last, set it < 1 to disable # default: 1200 aka 20min gameLength: 1200 @@ -14,6 +19,10 @@ gameLength: 1200 # default: true announceMessagesToNonPlayers: true +# Allow players to drop their items in game +# default: false +dropItems: false + # When the game is starting, the plugin will state there is x seconds left to hide. # You change where countdown messages are to be displayed: in the chat, action bar, or a title. # Below you can set CHAT, ACTIONBAR, or TITLE. Any invalid option will revert to CHAT. @@ -46,6 +55,10 @@ minPlayers: 2 # default: true pvp: true +# Allow players to regen health +# default: false +regenHealth: false + # !! Only effects the game at all if pvp is set to false !! # By default, If you disable pvp, Hiders and Seekers can no longer take damage from natural causes such as # falling or projectiles. If you want, you can keep pvp disabled so that Seekers only have to tag Hiders, but diff --git a/src/main/resources/maps.yml b/src/main/resources/maps.yml index 8505162..a8d9865 100644 --- a/src/main/resources/maps.yml +++ b/src/main/resources/maps.yml @@ -1 +1,3 @@ +# PLEASE DO NOT EDIT THIS FILE +# ONLY EDIT IF YOU KNOW WHAT YOU ARE DOING maps:
\ No newline at end of file diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index c6ce455..a857be1 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.7.0 +version: 1.7.1 author: KenshinEto load: STARTUP api-version: 1.13 @@ -72,4 +72,6 @@ permissions: default: op hs.confirm: default: op + hs.leavebounds: + default: false |