Skip to content

Commit

Permalink
Advanced Portals version 1.0.7:
Browse files Browse the repository at this point in the history
* Update for Valheim version 0.219.13 Bog Witch.
  • Loading branch information
OrianaVenture committed Nov 1, 2024
1 parent 999b0fc commit 8cebb56
Show file tree
Hide file tree
Showing 4 changed files with 50 additions and 30 deletions.
4 changes: 2 additions & 2 deletions AdvancedPortals/AdvancedPortals.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class AdvancedPortals : BaseUnityPlugin
{
public const string PluginId = "randyknapp.mods.advancedportals";
public const string DisplayName = "Advanced Portals";
public const string Version = "1.0.10";
public const string Version = "1.0.11";
public static readonly string[] _portalPrefabs = { "portal_ancient", "portal_obsidian", "portal_blackmarble" };

public static readonly List<GameObject> RegisteredPrefabs = new List<GameObject>();
Expand Down Expand Up @@ -388,7 +388,7 @@ public static void TryRegisterObjects()
return;
}

ObjectDB.instance.UpdateItemHashes();
ObjectDB.instance.UpdateRegisters();

var pieceTables = new List<PieceTable>();
foreach (var itemPrefab in ObjectDB.instance.m_items)
Expand Down
39 changes: 39 additions & 0 deletions AdvancedPortals/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## 1.0.11
* Update for Valheim version 0.219.13 Bog Witch.

## 1.0.10
* ServerSync Update fixing a multiplayer issue

## 1.0.9
* Update for 0.217.24 - Hildr's Request

## 1.0.8
* Fixing the Portal Saving issue with the changes that were presented in a recent update.
* This now adds the Custom Portal Prefabs to the PortalPrefab list during Game.Awake reducing the need to patch any ZDOMan stuff.

## 1.0.7
* Hildir's Request Update 0.217.14

## 1.0.6
* Restored Portal Connections on Dedicated Servers.

## 1.0.5
* Updated Portal Connection logic which was preventing Advanced Portals from connecting

## 1.0.4
* Updates for 0.216.9 Valheim

## 1.0.3
* Vapok fixed a bug that makes Adventure Backpacks work with Advanced Portals

## 1.0.2
* Added bronze to Ancient portal transport list (how could I forget?)
* Updated to support other mods that extend the inventory (Thanks Vapok)

## 1.0.1
* Added compatibility with AnyPortal and TargetPortal
* Fixed a bug with Obsidian and Black Marble portal recipes
* Added 5 BlackMetal to the default recipe for Black Marble portals (delete your config to automatically use the new recipe)

## 1.0.0
* Initial Release
4 changes: 2 additions & 2 deletions AdvancedPortals/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// 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("1.0.10")]
[assembly: AssemblyFileVersion("1.0.10")]
[assembly: AssemblyVersion("1.0.11")]
[assembly: AssemblyFileVersion("1.0.11")]
33 changes: 7 additions & 26 deletions AdvancedPortals/README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# AdvancedPortals
Author: RandyKnapp
Source: [Github](https://github.com/RandyKnapp/ValheimMods/tree/main/AdvancedPortals)
Discord: [RandyKnapp's Mod Community](https://discord.gg/randyknappmods)
Patreon: [Randy's Patreon](https://www.patreon.com/randyknapp)
# Advanced Portals

Author: [RandyKnapp](https://discord.gg/ZNhYeavv3C)
Source: [Github](https://github.com/RandyKnapp/ValheimMods/tree/main/AdvancedPortals/)
Patreon: [patreon.com/randyknapp](https://www.patreon.com/randyknapp)
Discord: [RandyKnapp's Mod Community](https://discord.gg/ZNhYeavv3C)

Adds three new portals to provide a lore-friendly and balanced way to reduce the item-transport slog!

Expand Down Expand Up @@ -42,24 +43,4 @@ Includes ServerSync.

## Installation:
* Nexus: Drop the AdvancedPortals.dll right into your BepInEx/plugins folder
* ThunderStore: Use r2modman to install, or manually drop the dll into your BepInEx/plugins folder

### Changelist:

#### 1.0.6
* Restored Portal Connections on Dedicated Servers.
#### 1.0.5
* Updated Portal Connection logic which was preventing Advanced Portals from connecting
#### 1.0.4
* Updates for Valheim 0.217.5
#### 1.0.3
* Vapok fixed a bug that makes Adventure Backpacks work with Advanced Portals
#### 1.0.2
* Added bronze to Ancient portal transport list (how could I forget?)
* Updated to support other mods that extend the inventory (Thanks Vapok)
#### 1.0.1
* Added compatibility with AnyPortal and TargetPortal
* Fixed a bug with Obsidian and Black Marble portal recipes
* Added 5 BlackMetal to the default recipe for Black Marble portals (delete your config to automatically use the new recipe)
#### 1.0.0
* Initial Release
* ThunderStore: Use r2modman to install, or manually drop the dll into your BepInEx/plugins folder

0 comments on commit 8cebb56

Please sign in to comment.