2020-03-21 17:29:35 +01:00
|
|
|
From 1c8f1bf377624c066e0d6300a3f684193eb1d0e9 Mon Sep 17 00:00:00 2001
|
2020-02-26 22:22:46 +01:00
|
|
|
From: tr7zw <tr7zw@live.de>
|
|
|
|
Date: Wed, 26 Feb 2020 22:21:14 +0100
|
|
|
|
Subject: [PATCH] Add GameProfileLookupEvent
|
|
|
|
|
|
|
|
---
|
2020-02-27 22:17:46 +01:00
|
|
|
pom.xml | 11 +++++
|
|
|
|
.../yapfa/events/GameProfileLookupEvent.java | 45 +++++++++++++++++++
|
|
|
|
2 files changed, 56 insertions(+)
|
2020-02-26 22:22:46 +01:00
|
|
|
create mode 100644 src/main/java/de/tr7zw/yapfa/events/GameProfileLookupEvent.java
|
|
|
|
|
|
|
|
diff --git a/pom.xml b/pom.xml
|
2020-03-21 17:29:35 +01:00
|
|
|
index 4bb7efe9..d9fb880f 100644
|
2020-02-26 22:22:46 +01:00
|
|
|
--- a/pom.xml
|
|
|
|
+++ b/pom.xml
|
2020-03-21 17:29:35 +01:00
|
|
|
@@ -40,6 +40,10 @@
|
2020-02-26 22:22:46 +01:00
|
|
|
<id>sonatype</id>
|
|
|
|
<url>https://oss.sonatype.org/content/groups/public/</url>
|
|
|
|
</repository>
|
|
|
|
+ <repository>
|
|
|
|
+ <id>mojang</id>
|
|
|
|
+ <url>https://libraries.minecraft.net/</url>
|
|
|
|
+ </repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
2020-03-21 17:29:35 +01:00
|
|
|
@@ -50,6 +54,13 @@
|
2020-02-26 22:22:46 +01:00
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
+ <!-- Authlib for Gameprofiles -->
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.mojang</groupId>
|
|
|
|
+ <artifactId>authlib</artifactId>
|
|
|
|
+ <version>1.5.25</version>
|
|
|
|
+ <scope>provided</scope>
|
|
|
|
+ </dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>it.unimi.dsi</groupId>
|
|
|
|
<artifactId>fastutil</artifactId>
|
|
|
|
diff --git a/src/main/java/de/tr7zw/yapfa/events/GameProfileLookupEvent.java b/src/main/java/de/tr7zw/yapfa/events/GameProfileLookupEvent.java
|
|
|
|
new file mode 100644
|
2020-03-09 21:11:48 +01:00
|
|
|
index 00000000..4ab5fd19
|
2020-02-26 22:22:46 +01:00
|
|
|
--- /dev/null
|
|
|
|
+++ b/src/main/java/de/tr7zw/yapfa/events/GameProfileLookupEvent.java
|
2020-02-27 22:17:46 +01:00
|
|
|
@@ -0,0 +1,45 @@
|
2020-02-26 22:22:46 +01:00
|
|
|
+package de.tr7zw.yapfa.events;
|
|
|
|
+
|
2020-02-27 22:17:46 +01:00
|
|
|
+import java.util.UUID;
|
|
|
|
+
|
2020-02-26 22:22:46 +01:00
|
|
|
+import org.bukkit.event.Event;
|
|
|
|
+import org.bukkit.event.HandlerList;
|
|
|
|
+
|
|
|
|
+import com.mojang.authlib.GameProfile;
|
|
|
|
+
|
|
|
|
+public class GameProfileLookupEvent extends Event {
|
|
|
|
+ private static final HandlerList handlers = new HandlerList();
|
|
|
|
+ private GameProfile gameProfile = null;
|
2020-02-27 22:17:46 +01:00
|
|
|
+ private final UUID uuid;
|
|
|
|
+ private final String name;
|
2020-02-26 22:22:46 +01:00
|
|
|
+
|
2020-03-09 21:11:48 +01:00
|
|
|
+ public GameProfileLookupEvent(boolean async, UUID uuid, String name) {
|
|
|
|
+ super(async);
|
2020-02-27 22:17:46 +01:00
|
|
|
+ this.uuid = uuid;
|
|
|
|
+ this.name = name;
|
|
|
|
+ }
|
2020-02-26 22:22:46 +01:00
|
|
|
+
|
|
|
|
+ public GameProfile getGameProfile() {
|
|
|
|
+ return gameProfile;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGameProfile(GameProfile gameProfile) {
|
|
|
|
+ this.gameProfile = gameProfile;
|
|
|
|
+ }
|
|
|
|
+
|
2020-02-27 22:17:46 +01:00
|
|
|
+ public UUID getUuid() {
|
|
|
|
+ return uuid;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public String getName() {
|
|
|
|
+ return name;
|
|
|
|
+ }
|
|
|
|
+
|
2020-02-26 22:22:46 +01:00
|
|
|
+ public HandlerList getHandlers() {
|
|
|
|
+ return handlers;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public static HandlerList getHandlerList() {
|
|
|
|
+ return handlers;
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
--
|
|
|
|
2.25.1.windows.1
|
|
|
|
|