mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 02:10:30 +01:00
71c18fd5c9
This simply provides the base API to create the objects. Further commits will come that adds adds usage of this API to existing GameProfile based API's, as well as new API's.
48 lines
1.4 KiB
Diff
48 lines
1.4 KiB
Diff
From 3fe26d396837d1f3aad927133722332e4d1f7b51 Mon Sep 17 00:00:00 2001
|
|
From: willies952002 <admin@domnian.com>
|
|
Date: Thu, 20 Jul 2017 18:05:36 -0400
|
|
Subject: [PATCH] Allow Changing of Player Sample in ServerListPingEvent
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/event/server/ServerListPingEvent.java b/src/main/java/org/bukkit/event/server/ServerListPingEvent.java
|
|
index 3c38d857..cb8d0fcd 100644
|
|
--- a/src/main/java/org/bukkit/event/server/ServerListPingEvent.java
|
|
+++ b/src/main/java/org/bukkit/event/server/ServerListPingEvent.java
|
|
@@ -2,6 +2,7 @@ package org.bukkit.event.server;
|
|
|
|
import java.net.InetAddress;
|
|
import java.util.Iterator;
|
|
+import java.util.List;
|
|
|
|
import org.apache.commons.lang.Validate;
|
|
import org.bukkit.entity.Player;
|
|
@@ -145,4 +146,25 @@ public class ServerListPingEvent extends ServerEvent implements Iterable<Player>
|
|
public Iterator<Player> iterator() throws UnsupportedOperationException {
|
|
throw new UnsupportedOperationException();
|
|
}
|
|
+
|
|
+ // Paper start
|
|
+ private java.util.List<String> sample;
|
|
+
|
|
+ /**
|
|
+ * @deprecated Will be replaced in 1.13
|
|
+ */
|
|
+ @Deprecated
|
|
+ public void setSampleText(java.util.List<String> sample) {
|
|
+ this.sample = sample;
|
|
+ }
|
|
+
|
|
+ /**
|
|
+ * @deprecated Will be replaced in 1.13
|
|
+ */
|
|
+ @Deprecated
|
|
+ public java.util.List<String> getSampleText() {
|
|
+ return sample;
|
|
+ }
|
|
+ // Paper end
|
|
+
|
|
}
|
|
--
|
|
2.15.1
|
|
|