geforkt von Mirrors/Paper
Properly flag profile events as async as needed
Dieser Commit ist enthalten in:
Ursprung
5ea311d92f
Commit
963ddeb6ed
@ -12,7 +12,7 @@ This is useful for implementing a ProfileCache for Player Skulls
|
||||
|
||||
diff --git a/src/main/java/com/destroystokyo/paper/event/profile/FillProfileEvent.java b/src/main/java/com/destroystokyo/paper/event/profile/FillProfileEvent.java
|
||||
new file mode 100644
|
||||
index 00000000..a893dda1
|
||||
index 00000000..e8f6e7c1
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/com/destroystokyo/paper/event/profile/FillProfileEvent.java
|
||||
@@ -0,0 +0,0 @@
|
||||
@ -56,6 +56,7 @@ index 00000000..a893dda1
|
||||
+ private final PlayerProfile profile;
|
||||
+
|
||||
+ public FillProfileEvent(@Nonnull PlayerProfile profile) {
|
||||
+ super(!org.bukkit.Bukkit.isPrimaryThread());
|
||||
+ this.profile = profile;
|
||||
+ }
|
||||
+
|
||||
@ -89,7 +90,7 @@ index 00000000..a893dda1
|
||||
+}
|
||||
diff --git a/src/main/java/com/destroystokyo/paper/event/profile/PreFillProfileEvent.java b/src/main/java/com/destroystokyo/paper/event/profile/PreFillProfileEvent.java
|
||||
new file mode 100644
|
||||
index 00000000..e34312c1
|
||||
index 00000000..f7b332e1
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/com/destroystokyo/paper/event/profile/PreFillProfileEvent.java
|
||||
@@ -0,0 +0,0 @@
|
||||
@ -135,6 +136,7 @@ index 00000000..e34312c1
|
||||
+ private final PlayerProfile profile;
|
||||
+
|
||||
+ public PreFillProfileEvent(PlayerProfile profile) {
|
||||
+ super(!org.bukkit.Bukkit.isPrimaryThread());
|
||||
+ this.profile = profile;
|
||||
+ }
|
||||
+
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren