Skip to content

Commit

Permalink
0.11 notes
Browse files Browse the repository at this point in the history
  • Loading branch information
JavidPack committed Feb 10, 2019
1 parent f181b2d commit 2abf081
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions HEROsModServices/MobSpawner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ public MobSpawnWindow()
private void bMod_onLeftClick(object sender, EventArgs e)
{
string[] mods = ModLoader.GetLoadedMods();
// TODO: 0.11 code: string[] mods = ModLoader.Mods.Select(x=>x.Name).ToArray();
if (bMod.Tooltip == "")
{
}
Expand Down
1 change: 1 addition & 0 deletions UIKit/UIComponents/ItemBrowser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,7 @@ public static void ParseList2()
{
Category modCategory = new Category("Mod");
modCategory.SubCategories = new List<Category>();
// TODO: 0.11 code: foreach (Mod loadedMod in ModLoader.Mods)
foreach (Mod loadedMod in ModLoader.LoadedMods)
{
if (loadedMod.Name != "ModLoader")
Expand Down

0 comments on commit 2abf081

Please sign in to comment.