9
0
mirror of https://github.com/LeavesMC/Leaves.git synced 2025-12-19 14:59:32 +00:00

Fix typo in Leaves version fetcher (#422)

This commit is contained in:
Creeam
2025-02-25 08:26:56 -08:00
committed by GitHub
parent 07b429ed2d
commit e30adf705a

View File

@@ -43,7 +43,7 @@ public class LeavesVersionFetcher extends PaperVersionFetcher {
if (build.buildNumber().isEmpty() && build.gitCommit().isEmpty()) { if (build.buildNumber().isEmpty() && build.gitCommit().isEmpty()) {
updateMessage = text("You are running a development version without access to version information", color(0xFF5300)); updateMessage = text("You are running a development version without access to version information", color(0xFF5300));
} else if (build.buildNumber().isEmpty()) { } else if (build.buildNumber().isEmpty()) {
updateMessage = text("You are running a development version form CI", color(0xFF5300)); updateMessage = text("You are running a development version from CI", color(0xFF5300));
} else { } else {
updateMessage = getUpdateStatusMessage("LeavesMC/Leaves", build); updateMessage = getUpdateStatusMessage("LeavesMC/Leaves", build);
} }