Skip to content

Commit

Permalink
[ChestPvPProtection] Fixed the config group to be more in line with h…
Browse files Browse the repository at this point in the history
…ow config groups are named in other VMods
  • Loading branch information
WhiteFang5 committed Aug 5, 2022
1 parent 7354f59 commit a280cd5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@
* Initial release

## Chest PvP Protection
### Next Release
* Fixed the config group to be more in line with how config groups are named in other VMods

### v1.0.1
* Fixed an issue related to retrieving Inventories from the NetworkIdMapping causing the mod to crash/not work correctly

Expand Down
4 changes: 2 additions & 2 deletions ChestPvPProtection/Configs/ChestPvPProtectionSystemConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ public static class ChestPvPProtectionSystemConfig

public static void Initialize(ConfigFile config)
{
ChestPvPProtectionEnabled = config.Bind(nameof(ChestPvPProtection), nameof(ChestPvPProtectionEnabled), false, "Enabled/disable the Chest PvP Protection system.");
ChestPvPProtectionSendMessage = config.Bind(nameof(ChestPvPProtection), nameof(ChestPvPProtectionSendMessage), true, "Enabled/disable the sending of a system message to the player with the PvP Protection buff that's attempting to interact with an enemy player's chest.");
ChestPvPProtectionEnabled = config.Bind(nameof(ChestPvPProtectionSystemConfig), nameof(ChestPvPProtectionEnabled), false, "Enabled/disable the Chest PvP Protection system.");
ChestPvPProtectionSendMessage = config.Bind(nameof(ChestPvPProtectionSystemConfig), nameof(ChestPvPProtectionSendMessage), true, "Enabled/disable the sending of a system message to the player with the PvP Protection buff that's attempting to interact with an enemy player's chest.");
}

#endregion
Expand Down

0 comments on commit a280cd5

Please sign in to comment.