From 2139a8d5d30237b6066691af3f29bf1105e4298a Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Mon, 6 Feb 2023 12:15:09 -0500 Subject: spawn patch, bounds checks, drop items, regen --- src/main/resources/config.yml | 13 +++++++++++++ src/main/resources/maps.yml | 2 ++ src/main/resources/plugin.yml | 2 ++ 3 files changed, 17 insertions(+) (limited to 'src/main/resources') 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 -- cgit v1.2.3-freya