From b9295115ff968b3d6d941ac3af91afe598420202 Mon Sep 17 00:00:00 2001 From: Myles Date: Thu, 1 Aug 2024 00:45:40 -0500 Subject: standardize style and language - standardize code style across PR - change some language/fix typos in documentation (code + external) --- src/main/resources/config.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/main/resources/config.yml') diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index ded50ef..b15acaf 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -1,7 +1,5 @@ -# Hides player join/leave messages in public chat +# Hides player join and leave messages in public chat hide-join-leave-messages: false -# Duration in seconds to wait for more players to join +# Duration (in seconds) to wait for more players to join a game before starting wait-duration: 15 - - -- cgit v1.2.3 From cadddd7499f92b4529ce34231ff4a379011515ff Mon Sep 17 00:00:00 2001 From: Myles Date: Thu, 1 Aug 2024 16:17:01 -0500 Subject: bugfixes and more stylistic changes - remove update checker and multiverse from build dependencies - add config option to hide death messages - ensure join/leave/death messages only apply for tumble games - fix a bunch of random command bugs I found - layers no longer generate with a placeholder material before being clumped - misc refactoring --- src/main/resources/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/main/resources/config.yml') diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index b15acaf..28cc4e2 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -1,5 +1,9 @@ -# Hides player join and leave messages in public chat +# Hides player join and leave messages in public chat during games hide-join-leave-messages: false +# Hides player death messages in public chat during games +hide-death-messages: false + # Duration (in seconds) to wait for more players to join a game before starting +# Set to 0 to disable wait-duration: 15 -- cgit v1.2.3