Skip to content

Commit

Permalink
add missing .Item to Cloak custom MinProc
Browse files Browse the repository at this point in the history
  • Loading branch information
gmriggs committed Mar 25, 2024
1 parent ecc7da5 commit e5a52fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/ACE.Server/Entity/Cloak.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ private static float MinProc
{
return 0f;
}
return Convert.ToSingle(PropertyManager.GetDouble("cloak_min_proc_base", 0f));
return Convert.ToSingle(PropertyManager.GetDouble("cloak_min_proc_base", 0f).Item);
}
}

Expand Down Expand Up @@ -276,4 +276,4 @@ public static bool HasProcSpell(WorldObject cloak)
return cloak?.ProcSpell != null;
}
}
}
}

0 comments on commit e5a52fa

Please sign in to comment.