From f96c4bc0631fe44b4011f6248d410e94b1460db5 Mon Sep 17 00:00:00 2001 From: nossr50 Date: Fri, 15 Mar 2019 00:55:54 -0700 Subject: [PATCH] Party Config pt 3 --- Changelog.txt | 2 ++ .../nossr50/config/hocon/party/ConfigSectionPartyXP.java | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/Changelog.txt b/Changelog.txt index 41c355392..af5e63361 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -49,6 +49,8 @@ Version 2.2.0 Party's "AutoKick_Interval" renamed -> "Hours-Between-Cleanup-Operations" Party's "Old_Party_Member_Cutoff" renamed -> "Offline-Day-Limit" Added toggle to limit max party size, previously this was done by setting party maximum size above -1 + Leveling your Party-Level now requires being near another party member by default + Party members are now informed about your skill ups by default Notification config options will now be found in "chat_and_hud_notifications.conf" diff --git a/src/main/java/com/gmail/nossr50/config/hocon/party/ConfigSectionPartyXP.java b/src/main/java/com/gmail/nossr50/config/hocon/party/ConfigSectionPartyXP.java index e7c55b1dd..9ee6e372b 100644 --- a/src/main/java/com/gmail/nossr50/config/hocon/party/ConfigSectionPartyXP.java +++ b/src/main/java/com/gmail/nossr50/config/hocon/party/ConfigSectionPartyXP.java @@ -19,4 +19,8 @@ public class ConfigSectionPartyXP { "\n\nKeep in mind, if you gain XP in say Acrobatics and then that XP is shared with your party members, " + "that doesn't mean that you will get extra XP from the XP sharing.") private ConfigSectionPartyExperienceSharing partyExperienceSharing = new ConfigSectionPartyExperienceSharing(); + + @Setting(value = "Party-Level", comment = "Parties in mcMMO gain levels just like skills" + + "\nSettings related to that can be found here!.") + private ConfigSectionPartyLevel partyLevel = new ConfigSectionPartyLevel(); } \ No newline at end of file