Skip to content

Commit

Permalink
Changed GemLevel.MaxLevel type
Browse files Browse the repository at this point in the history
  • Loading branch information
IlliumIv committed Oct 4, 2019
1 parent 9e205b2 commit 645a023
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Plugins/LevelSkillGems.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
using ExileCore.PoEMemory;
using ExileCore.PoEMemory.Components;
using ExileCore.PoEMemory.Elements;
using ExileCore.Shared.Nodes;
using ImGuiNET;
using Random_Features.Libs;
using SharpDX;
Expand Down Expand Up @@ -119,7 +120,7 @@ public void LevelSkillGemsMenu()
.Rules.Add(new GemLevelRule
{
GemName = "Cast when Damage Taken Support",
MaxLevel = 1
MaxLevel = new RangeNode<int>(1, 1, 20)
});
}
}
Expand Down

0 comments on commit 645a023

Please sign in to comment.