We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06a05c8 commit 2bd5338Copy full SHA for 2bd5338
Intersect.Client/Interface/Game/DescriptionWindows/ItemDescriptionWindow.cs
@@ -329,7 +329,7 @@ protected void SetupEquipmentInfo()
329
for (var i = 0; i < Enum.GetValues<Stat>().Length; i++)
330
{
331
// Do we have item properties, if so this is a finished item. Otherwise does this item not have growing stats?
332
- if (statModifiers != default || mItem.StatRanges?.Length == 0)
+ if (statModifiers != default || mItem.StatRanges?.Length == 0 || (mItem.StatRanges != default && mItem.StatRanges[i].LowRange == 0 && mItem.StatRanges[i].HighRange == 0))
333
334
var flatStat = mItem.StatsGiven[i];
335
if (statModifiers != default)
0 commit comments