aboutsummaryrefslogtreecommitdiffhomepage
path: root/Spigot-API-Patches/0090-Add-legacy-ping-support-to-PaperServerListPingEvent.patch
blob: 07a8d55fd0d6afb081d3a46535f629533987fa47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
From 2411eb933aeb83a5124757188f75cdc6a14717e3 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 517d1523..ffda9f6a 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;
+    }
+
 }
-- 
2.20.1