Skip to content

Commit

Permalink
Fixed legacy mod tags not being included
Browse files Browse the repository at this point in the history
  • Loading branch information
devyndamonster committed Jan 9, 2022
1 parent ca0c19e commit b4c65a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Scripts/ObjectTemplates/ItemSpawnerEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ public void LegacyPopulateFromID(ItemSpawnerV2.PageMode Page, ItemSpawnerID ID,

TutorialBlockIDs = new List<string>();
TutorialBlockIDs.AddRange(ID.TutorialBlocks);

ModTags = new List<string>();
ModTags.AddRange(ID.ModTags);
}


Expand Down
2 changes: 1 addition & 1 deletion Scripts/OtherLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

namespace OtherLoader
{
[BepInPlugin("h3vr.otherloader", "OtherLoader", "1.2.1")]
[BepInPlugin("h3vr.otherloader", "OtherLoader", "1.2.6")]
[BepInDependency(StratumRoot.GUID, StratumRoot.Version)]
[BepInDependency(Sodalite.SodaliteConstants.Guid, Sodalite.SodaliteConstants.Version)]
public class OtherLoader : StratumPlugin
Expand Down

0 comments on commit b4c65a3

Please sign in to comment.