diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-02-06 12:15:09 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-02-06 12:15:09 -0500 |
commit | 2139a8d5d30237b6066691af3f29bf1105e4298a (patch) | |
tree | 5109f842a00b5fc6eab86f9390e6482d1ea1a34b /src/main/resources | |
parent | Merge pull request '1.7.0 - Multi Map Support' (#4) from dev into main (diff) | |
download | kenshinshideandseek-2139a8d5d30237b6066691af3f29bf1105e4298a.tar.gz kenshinshideandseek-2139a8d5d30237b6066691af3f29bf1105e4298a.tar.bz2 kenshinshideandseek-2139a8d5d30237b6066691af3f29bf1105e4298a.zip |
spawn patch, bounds checks, drop items, regen
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 | 2 |
3 files changed, 17 insertions, 0 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..cf281af 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -72,4 +72,6 @@ permissions: default: op hs.confirm: default: op + hs.leavebounds: + default: false |