From f4326377102c88e5cf6c1471bb18869ea917aa3e Mon Sep 17 00:00:00 2001 From: BruceChen Date: Mon, 6 Apr 2026 20:34:38 +0800 Subject: [PATCH] fix: update GitHub link in MccBannerPanelBuilder - Changed the GitHub link in the MccBannerPanelBuilder to use the full URL format for better accessibility. --- MinecraftClient/Tui/MccBannerPanelBuilder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MinecraftClient/Tui/MccBannerPanelBuilder.cs b/MinecraftClient/Tui/MccBannerPanelBuilder.cs index c00050fc..2ebab673 100644 --- a/MinecraftClient/Tui/MccBannerPanelBuilder.cs +++ b/MinecraftClient/Tui/MccBannerPanelBuilder.cs @@ -69,7 +69,7 @@ namespace MinecraftClient.Tui private static void AddGithub(StackPanel panel) { var row = new TextBlock(); - row.Inlines!.Add(Val("Github.com/MCCTeam", Pal.Gray)); + row.Inlines!.Add(Val("https://github.com/MCCTeam", Pal.Gray)); panel.Children.Add(row); }