Skip to content

Commit

Permalink
3.0.4: upgrade ChebsValheimLib to 1.0.1 to fix ToolTier
Browse files Browse the repository at this point in the history
  • Loading branch information
jpw1991 committed Apr 12, 2023
1 parent 1f857f9 commit 88f85b8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion ChebsNecromancy/BasePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
using ChebsNecromancy.Structures;
using ChebsValheimLibrary;
using ChebsValheimLibrary.Common;
using ChebsValheimLibrary.Items.Tools;
using HarmonyLib;
using Jotunn;
using Jotunn.Configs;
Expand All @@ -33,7 +34,7 @@ internal class BasePlugin : BaseUnityPlugin
{
public const string PluginGuid = "com.chebgonaz.ChebsNecromancy";
public const string PluginName = "ChebsNecromancy";
public const string PluginVersion = "3.0.3";
public const string PluginVersion = "3.0.4";
private const string ConfigFileName = PluginGuid + ".cfg";
private static readonly string ConfigFileFullPath = Path.Combine(Paths.ConfigPath, ConfigFileName);

Expand Down Expand Up @@ -115,6 +116,8 @@ private void Awake()

SkeletonMinerMinion.SyncInternalsWithConfigs();
SkeletonWoodcutterMinion.SyncInternalsWithConfigs();
SkeletonPickaxe.SyncInternalsWithConfigs(SkeletonMinerMinion.ToolTier.Value);
SkeletonWoodAxe.SyncInternalsWithConfigs(SkeletonWoodcutterMinion.ToolTier.Value);

SetupWatcher();
}
Expand Down
2 changes: 1 addition & 1 deletion ChebsNecromancy/Package/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ChebsNecromancy",
"description": "Cheb's Necromancy adds Necromancy to Valheim via craftable wands and structures. Minions will follow you, guard your base, and perform menial tasks.",
"version_number": "3.0.3",
"version_number": "3.0.4",
"website_url": "https://github.com/jpw1991/chebs-necromancy",
"dependencies": [
"ValheimModding-Jotunn-2.11.2"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ You can find the github [here](https://github.com/jpw1991/chebs-necromancy).

Date | Version | Notes
--- | --- | ---
11/04/2023 | 3.0.4 | upgrade ChebsValheimLib to 1.0.1 to fix ToolTier
09/04/2023 | 3.0.1 | Refactor to be compatible with Cheb's Mercenaries; bug fixes
05/04/2023 | 2.5.15 | Miners prioritize copper, silver, and tin over rocks
05/04/2023 | 2.5.14 | Fix bug where bones get consumed even when not enough are in the inventory; fix config descriptions
Expand Down

0 comments on commit 88f85b8

Please sign in to comment.