Skip to content

Commit

Permalink
3.6.0: Try to make workers behave better; update CVL to 2.1.0 to prep…
Browse files Browse the repository at this point in the history
…are for upcoming changes
  • Loading branch information
jpw1991 committed Jul 14, 2023
1 parent e375f31 commit 006d386
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -381,3 +381,4 @@ ChebsNecromancy/libs
ChebsNecromancyUnity/Assets
ChebsNecromancyUnity/ProjectSettings/SceneTemplateSettings.json
ChebsNecromancyUnity/ProjectSettings/TimelineSettings.asset
ChebsNecromancyUnity.zip
4 changes: 2 additions & 2 deletions ChebsNecromancy/BasePlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ internal class BasePlugin : BaseUnityPlugin
{
public const string PluginGuid = "com.chebgonaz.ChebsNecromancy";
public const string PluginName = "ChebsNecromancy";
public const string PluginVersion = "3.5.2";
public const string PluginVersion = "3.6.0";
private const string ConfigFileName = PluginGuid + ".cfg";
private static readonly string ConfigFileFullPath = Path.Combine(Paths.ConfigPath, ConfigFileName);

public readonly System.Version ChebsValheimLibraryVersion = new("2.0.0");
public readonly System.Version ChebsValheimLibraryVersion = new("2.1.0");

private readonly Harmony harmony = new(PluginGuid);

Expand Down
4 changes: 3 additions & 1 deletion ChebsNecromancy/Minions/UndeadMinion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,10 @@ public static void CreateConfigs(BaseUnityPlugin plugin)
new ConfigurationManagerAttributes { IsAdminOnly = true }));
}

public virtual void Awake()
public override void Awake()
{
base.Awake();

var tameable = GetComponent<Tameable>();
if (tameable != null)
{
Expand Down
1 change: 1 addition & 0 deletions ChebsNecromancy/Package/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ A special thanks to the people who've helped me along the way:

Date | Version | Notes
--- | --- | ---
13/07/2023 | 3.6.0 | Try to make workers behave better; update CVL to 2.1.0 to prepare for upcoming changes
21/06/2023 | 3.5.2 | Treasure pylon checks that Piece is not null before processing container
16/06/2023 | 3.5.1 | Option to toggle smoke effects off wraiths (some players getting blinded out here)
12/06/2023 | 3.5.0 | Update for new Valheim version
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.5.2",
"version_number": "3.6.0",
"website_url": "https://github.com/jpw1991/chebs-necromancy",
"dependencies": [
"ValheimModding-Jotunn-2.11.2"
Expand Down
4 changes: 2 additions & 2 deletions ChebsNecromancy/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.5.2.0")]
[assembly: AssemblyFileVersion("3.5.2.0")]
[assembly: AssemblyVersion("3.6.0.0")]
[assembly: AssemblyFileVersion("3.6.0.0")]

2 changes: 1 addition & 1 deletion Friendly-Skeleton-Wand.wiki
Submodule Friendly-Skeleton-Wand.wiki updated from 884d73 to cb32dc
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ A special thanks to the people who've helped me along the way:

Date | Version | Notes
--- | --- | ---
13/07/2023 | 3.6.0 | Try to make workers behave better; update CVL to 2.1.0 to prepare for upcoming changes
21/06/2023 | 3.5.2 | Treasure pylon checks that Piece is not null before processing container
16/06/2023 | 3.5.1 | Option to toggle smoke effects off wraiths (some players getting blinded out here)
12/06/2023 | 3.5.0 | Update for new Valheim version
Expand Down
2 changes: 1 addition & 1 deletion publish_debug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

DEBUGDIR=ChebsNecromancy/bin/Debug
DLL=$DEBUGDIR/ChebsNecromancy.dll
LIB=$DEBUGDIR/ChebsValheimLibrary.dll
LIB=../chebs-valheim-library/ChebsValheimLibrary/bin/Release/ChebsValheimLibrary.dll
BUN=ChebsNecromancyUnity/Assets/AssetBundles/chebgonaz
PLUGINS=/home/joshua/.local/share/Steam/steamapps/common/Valheim/BepInEx/plugins
BEPINEX=ChebsNecromancy/libs/BepInEx.dll
Expand Down
2 changes: 1 addition & 1 deletion publish_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

RELEASEDIR=ChebsNecromancy/bin/Release
DLL=$RELEASEDIR/ChebsNecromancy.dll
LIB=$RELEASEDIR/ChebsValheimLibrary.dll
LIB=../chebs-valheim-library/ChebsValheimLibrary/bin/Release/ChebsValheimLibrary.dll
BUN=ChebsNecromancyUnity/Assets/AssetBundles/chebgonaz
PLUGINS=ChebsNecromancy/Package/plugins
README=README.md
Expand Down

0 comments on commit 006d386

Please sign in to comment.