-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
migrated pre-hard-fork patch 0005-fixed-version-checks.patch
- Loading branch information
1 parent
99c4d72
commit 9d1c650
Showing
1 changed file
with
2 additions
and
10 deletions.
There are no files selected for viewing
12 changes: 2 additions & 10 deletions
12
...es/server/0005-fixed-version-checks.patch → ...okyo/paper/PaperVersionFetcher.java.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,11 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: lukas81298 <[email protected]> | ||
Date: Fri, 21 Oct 2022 17:52:57 +0200 | ||
Subject: [PATCH] fixed version checks | ||
|
||
|
||
diff --git a/src/main/java/com/destroystokyo/paper/PaperVersionFetcher.java b/src/main/java/com/destroystokyo/paper/PaperVersionFetcher.java | ||
index 532306cacd52579cdf37e4aca25887b1ed3ba6a1..c4f09ea87f730c3900827f6f75ebc7d03e0e6c26 100644 | ||
--- a/src/main/java/com/destroystokyo/paper/PaperVersionFetcher.java | ||
+++ b/src/main/java/com/destroystokyo/paper/PaperVersionFetcher.java | ||
@@ -49,7 +49,7 @@ public class PaperVersionFetcher implements VersionFetcher { | ||
@@ -49,7 +_,7 @@ | ||
if (build.buildNumber().isEmpty() && build.gitCommit().isEmpty()) { | ||
updateMessage = text("You are running a development version without access to version information", color(0xFF5300)); | ||
} else { | ||
- updateMessage = getUpdateStatusMessage("PaperMC/Paper", build); | ||
+ updateMessage = getUpdateStatusMessage("gommehdnet/cheetah", build); | ||
+ updateMessage = getUpdateStatusMessage("gommehdnet/cheetah", build); // Cheetah - Build changes | ||
} | ||
final @Nullable Component history = this.getHistory(); | ||
|