Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zkitefly committed Aug 20, 2024
1 parent b3d3111 commit 18cba4b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Plain Craft Launcher 2/Modules/Minecraft/ModMinecraft.vb
Original file line number Diff line number Diff line change
Expand Up @@ -1031,11 +1031,11 @@ ExitDataLoad:
Name = Name.ToLower
If Name.StartsWith("2.0") OrElse Name.StartsWith("2point0") Then
Dim Teg = ""
If Name.StartsWith("red") Then
If Name.EndsWith("red") Then
Teg = "(红色版本)"
ElseIf Name.StartsWith("blue") Then
ElseIf Name.EndsWith("blue") Then
Teg = "(蓝色版本)"
ElseIf Name.StartsWith("purple") Then
ElseIf Name.EndsWith("purple") Then
Teg = "(紫色版本)"
End If
Return Teg & "这个秘密计划了两年的更新将游戏推向了一个新高度!"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
Select Case Version("id").ToString.ToLower
Case "2point0_blue", "2point0_red", "2point0_purple", "2.0_blue", "2.0_red", "2.0_purple", "2.0"
Type = "愚人节版"
Version("id") = Version("id").ToString().Replace("point", ".")
Version("type") = "special"
Version.Add("lore", GetMcFoolName(Version("id")))
Case "20w14infinite", "20w14∞"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,6 @@
Select Case Version("id").ToString.ToLower
Case "2point0_blue", "2point0_red", "2point0_purple", "2.0_blue", "2.0_red", "2.0_purple", "2.0"
Type = "愚人节版"
Version("id") = Version("id").ToString().Replace("point", ".")
Version("type") = "special"
Version.Add("lore", GetMcFoolName(Version("id")))
Case "20w14infinite", "20w14∞"
Expand Down

0 comments on commit 18cba4b

Please sign in to comment.