Skip to content

Commit

Permalink
git minor style improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
ontrigger committed Aug 23, 2020
1 parent 9d8e62a commit 4d7b76c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ItemStats/src/ItemStatDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1210,13 +1210,13 @@ static ItemStatProvider()
new ItemStat(
(itemCount, ctx) =>
{
float num2 = 16f;
for (int i = 0; i < itemCount - 1; i++)
var radius = 16f;
for (var i = 0; i < itemCount - 1; i++)
{
num2 *= 1.5f;
radius *= 1.5f;
}

return num2;
return radius;
},
"Radius Increase",
new IntFormatter("m")
Expand Down

0 comments on commit 4d7b76c

Please sign in to comment.