Skip to content

Commit b9da027

Browse files
committed
Fix #43
1 parent 3dbd09d commit b9da027

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Craftimizer/SimulatorUtils.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ public static unsafe ushort GetWKSSyncedLevel(this ClassJob me)
151151
for (var i = 0; i < 2; ++i)
152152
{
153153
if (handler->WKSClassJobs[i] == me.GetClassJobIndex())
154-
return Math.Min(jobLevel, handler->WKSClassLevels[i]);
154+
return Math.Max(jobLevel, handler->WKSClassLevels[i]);
155155
}
156156
}
157157
return jobLevel;

0 commit comments

Comments
 (0)