mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-04 10:11:29 +01:00
29 lines
1.6 KiB
Diff
29 lines
1.6 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
|
||
|
Date: Mon, 15 May 2017 10:11:42 -0500
|
||
|
Subject: [PATCH] 1.12-pre2 versioning change and warning
|
||
|
|
||
|
Remove when merged to master
|
||
|
|
||
|
diff --git a/src/main/java/org/bukkit/command/defaults/VersionCommand.java b/src/main/java/org/bukkit/command/defaults/VersionCommand.java
|
||
|
index aae605e9..d7e3d7f4 100644
|
||
|
--- a/src/main/java/org/bukkit/command/defaults/VersionCommand.java
|
||
|
+++ b/src/main/java/org/bukkit/command/defaults/VersionCommand.java
|
||
|
@@ -0,0 +0,0 @@ public class VersionCommand extends BukkitCommand {
|
||
|
if (!testPermission(sender)) return true;
|
||
|
|
||
|
if (args.length == 0) {
|
||
|
+ sender.sendMessage("This is pre-release software, and is not necessarily of the same quality as a full release"); // TODO: Remove during merge into master
|
||
|
sender.sendMessage("This server is running " + Bukkit.getName() + " version " + Bukkit.getVersion() + " (Implementing API version " + Bukkit.getBukkitVersion() + ")");
|
||
|
sendVersion(sender);
|
||
|
} else {
|
||
|
@@ -0,0 +0,0 @@ public class VersionCommand extends BukkitCommand {
|
||
|
}
|
||
|
|
||
|
// Contributed by Techcable <Techcable@outlook.com> in GH PR #65
|
||
|
- private static final String BRANCH = "master";
|
||
|
+ private static final String BRANCH = "pre/1.12"; // TODO: Switch back to master
|
||
|
private static int getFromRepo(String repo, String hash) {
|
||
|
try {
|
||
|
HttpURLConnection connection = (HttpURLConnection) new URL("https://api.github.com/repos/" + repo + "/compare/" + BRANCH + "..." + hash).openConnection();
|
||
|
--
|