mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-02 17:01:38 +01:00
36f34f01c0
Upstream has released updates that appears to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: da9ef3c5 #496: Add methods to get/set ItemStacks in EquipmentSlots 3abebc9f #492: Let Tameable extend Animals rather than Entity 941111a0 #495: Expose ItemStack and hand used in PlayerShearEntityEvent 4fe19cae #494: InventoryView - Add missing Brewing FUEL_TIME CraftBukkit Changes:933e9094
#664: Add methods to get/set ItemStacks in EquipmentSlots18722312
#662: Expose ItemStack and hand used in PlayerShearEntityEvent
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Minecrell <minecrell@minecrell.net>
|
|
Date: Wed, 11 Oct 2017 19:30:20 +0200
|
|
Subject: [PATCH] Add legacy ping support to PaperServerListPingEvent
|
|
|
|
Add a new method to StatusClient check if the client is a legacy
|
|
client that does not support all of the features provided in the
|
|
event.
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/network/StatusClient.java b/src/main/java/com/destroystokyo/paper/network/StatusClient.java
|
|
index 517d15238ed117f38bbd39f570874014cecf7bb5..ffda9f6a8b094942009aa78b331d22d9dcca2802 100644
|
|
--- a/src/main/java/com/destroystokyo/paper/network/StatusClient.java
|
|
+++ b/src/main/java/com/destroystokyo/paper/network/StatusClient.java
|
|
@@ -10,4 +10,16 @@ import com.destroystokyo.paper.event.server.PaperServerListPingEvent;
|
|
*/
|
|
public interface StatusClient extends NetworkClient {
|
|
|
|
+ /**
|
|
+ * Returns whether the client is using an older version that doesn't
|
|
+ * support all of the features in {@link PaperServerListPingEvent}.
|
|
+ *
|
|
+ * <p>For Vanilla, this returns {@code true} for all clients older than 1.7.</p>
|
|
+ *
|
|
+ * @return {@code true} if the client is using legacy ping
|
|
+ */
|
|
+ default boolean isLegacy() {
|
|
+ return false;
|
|
+ }
|
|
+
|
|
}
|