Skip to content

Commit 6edcdda

Browse files
committed
Fix compile error
1 parent 378f3b0 commit 6edcdda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

NGUInjector/Managers/ZoneHelpers.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ internal static int CalculateBestItopodLevel()
115115
var num2 = Convert.ToInt32(Math.Floor(Math.Log(num1, 1.05)));
116116
if (num2 < 1)
117117
return 1;
118-
var maxLevel = c.adventureController.maxItopodLevel()
118+
var maxLevel = c.adventureController.maxItopodLevel();
119119
if (num2 > maxLevel)
120120
num2 = maxLevel;
121121
return num2;

0 commit comments

Comments
 (0)