Skip to content

Commit f8b89be

Browse files
authored
Merge pull request #4018 from Silverteal/patch-3
修复 #4013
2 parents deca6b6 + a2b4881 commit f8b89be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plain Craft Launcher 2/Modules/Minecraft/ModLaunch.vb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1073,7 +1073,7 @@ SystemBrowser:
10731073
'自定义
10741074
Do Until McSkinSex(Uuid) = If(Setup.Get("LaunchSkinSlim"), "Alex", "Steve")
10751075
If Uuid.EndsWithF("FFFFF") Then Uuid = Mid(Uuid, 1, 32 - 5) & "00000"
1076-
Uuid = Mid(Uuid, 1, 32 - 5) & (Long.Parse(Right(Uuid, 5), Globalization.NumberStyles.AllowHexSpecifier) + 1).ToString("X")
1076+
Uuid = Mid(Uuid, 1, 32 - 5) & (Long.Parse(Right(Uuid, 5), Globalization.NumberStyles.AllowHexSpecifier) + 1).ToString("X").PadLeft(5, "0")
10771077
Loop
10781078
End Select
10791079
Return Uuid

0 commit comments

Comments
 (0)