diff --git a/Changelog.txt b/Changelog.txt index aed3e832c..6bac7a9cf 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -8,8 +8,11 @@ Version 2.2.013 (API) Added new methods to com.gmail.nossr50.util.blockmeta.UserBlockTracker for easier readability (API) Deprecated many poorly named methods in UserBlockTracker (see notes) (Codebase) Cleaned up and organized unit tests relating to UserBlockTracker + Added missing entries for Tridents/Xbows/Maces to config.yml (see notes) NOTES: + Some settings such as Hardcore.Death_Stat_Loss.Enabled were missing entries for the new skills, I have added them to the default config. + They should be added to your config upon start up. mcMMO will use default values when a config entry is not found in most cases. Not planning to delete the deprecated methods in UserBlockTracker anytime soon, as nothing has really changed other than the names Version 2.2.012 diff --git a/src/main/resources/config.yml b/src/main/resources/config.yml index 4df9d2eb0..fede55679 100644 --- a/src/main/resources/config.yml +++ b/src/main/resources/config.yml @@ -226,6 +226,9 @@ Hardcore: Taming: false Unarmed: false Woodcutting: false + Tridents: false + Crossbows: false + Maces: false Vampirism: Leech_Percentage: 5.0 Level_Threshold: 0 @@ -243,6 +246,9 @@ Hardcore: Taming: false Unarmed: false Woodcutting: false + Tridents: false + Crossbows: false + Maces: false # # Settings for SMP Mods @@ -409,6 +415,18 @@ Skills: Enabled_For_PVP: true Enabled_For_PVE: true Level_Cap: 0 + Tridents: + Enabled_For_PVP: true + Enabled_For_PVE: true + Level_Cap: 0 + Crossbows: + Enabled_For_PVP: true + Enabled_For_PVE: true + Level_Cap: 0 + Maces: + Enabled_For_PVP: true + Enabled_For_PVE: true + Level_Cap: 0 Taming: Enabled_For_PVP: true Enabled_For_PVE: true