Skip to content

Commit

Permalink
Merge pull request #4018 from Silverteal/patch-3
Browse files Browse the repository at this point in the history
修复 #4013
  • Loading branch information
LTCatt authored Jun 13, 2024
2 parents deca6b6 + a2b4881 commit f8b89be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Plain Craft Launcher 2/Modules/Minecraft/ModLaunch.vb
Original file line number Diff line number Diff line change
Expand Up @@ -1073,7 +1073,7 @@ SystemBrowser:
'自定义
Do Until McSkinSex(Uuid) = If(Setup.Get("LaunchSkinSlim"), "Alex", "Steve")
If Uuid.EndsWithF("FFFFF") Then Uuid = Mid(Uuid, 1, 32 - 5) & "00000"
Uuid = Mid(Uuid, 1, 32 - 5) & (Long.Parse(Right(Uuid, 5), Globalization.NumberStyles.AllowHexSpecifier) + 1).ToString("X")
Uuid = Mid(Uuid, 1, 32 - 5) & (Long.Parse(Right(Uuid, 5), Globalization.NumberStyles.AllowHexSpecifier) + 1).ToString("X").PadLeft(5, "0")
Loop
End Select
Return Uuid
Expand Down

0 comments on commit f8b89be

Please sign in to comment.