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 From c3eaf2eccd30a42dec6ab63cb6c9ec80b102e746 Mon Sep 17 00:00:00 2001 From: Tyler Murphy Date: Tue, 7 Feb 2023 18:08:45 -0500 Subject: 1.7.1 beta 1 --- pom.xml | 2 +- .../java/net/tylermurphy/hideAndSeek/command/util/CommandGroup.java | 2 +- src/main/resources/plugin.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/resources') diff --git a/pom.xml b/pom.xml index df2ab1b..6a8df6e 100644 --- a/pom.xml +++ b/pom.xml @@ -1,7 +1,7 @@ 4.0.0 net.tylermurphy KenshinsHideAndSeek - 1.7.0 + 1.7.1 Hide and Seek Plugin diff --git a/src/main/java/net/tylermurphy/hideAndSeek/command/util/CommandGroup.java b/src/main/java/net/tylermurphy/hideAndSeek/command/util/CommandGroup.java index 0cb307b..98f2f4f 100644 --- a/src/main/java/net/tylermurphy/hideAndSeek/command/util/CommandGroup.java +++ b/src/main/java/net/tylermurphy/hideAndSeek/command/util/CommandGroup.java @@ -51,7 +51,7 @@ public class CommandGroup { if (data == null) { player.sendMessage( - String.format("%s%sKenshin's Hide and Seek %s(%s1.7.0%s)\n", ChatColor.AQUA, ChatColor.BOLD, ChatColor.GRAY, ChatColor.WHITE, ChatColor.GRAY) + + String.format("%s%sKenshin's Hide and Seek %s(%s1.7.1%s)\n", ChatColor.AQUA, ChatColor.BOLD, ChatColor.GRAY, ChatColor.WHITE, ChatColor.GRAY) + String.format("%sAuthor: %s[KenshinEto]\n", ChatColor.GRAY, ChatColor.WHITE) + String.format("%sHelp Command: %s/hs %shelp", ChatColor.GRAY, ChatColor.AQUA, ChatColor.WHITE) ); diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index cf281af..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 -- cgit v1.2.3-freya