2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Sun, 18 Mar 2018 12:28:55 -0400
|
|
|
|
Subject: [PATCH] Player.setPlayerProfile API
|
|
|
|
|
|
|
|
This can be useful for changing name or skins after a player has logged in.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/entity/Player.java b/src/main/java/org/bukkit/entity/Player.java
|
2021-08-05 21:53:50 +02:00
|
|
|
index f858be54eb7659d4c320e305b82aea6647dcb721..d16a606a3752d6ef3a6438eb4d870ae8d410cf24 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
2021-08-05 21:53:50 +02:00
|
|
|
@@ -5,6 +5,7 @@ import java.util.List; // Paper
|
2021-06-11 14:02:28 +02:00
|
|
|
import java.util.UUID;
|
|
|
|
import com.destroystokyo.paper.Title; // Paper
|
|
|
|
import net.kyori.adventure.text.Component;
|
|
|
|
+import com.destroystokyo.paper.profile.PlayerProfile; // Paper
|
|
|
|
import org.bukkit.DyeColor;
|
|
|
|
import org.bukkit.Effect;
|
|
|
|
import org.bukkit.GameMode;
|
2021-08-05 21:53:50 +02:00
|
|
|
@@ -1875,6 +1876,20 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
2021-06-11 14:02:28 +02:00
|
|
|
* was {@link org.bukkit.event.player.PlayerResourcePackStatusEvent.Status#SUCCESSFULLY_LOADED}
|
|
|
|
*/
|
|
|
|
boolean hasResourcePack();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Gets a copy of this players profile
|
|
|
|
+ * @return The players profile object
|
|
|
|
+ */
|
|
|
|
+ @NotNull
|
|
|
|
+ PlayerProfile getPlayerProfile();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Changes the PlayerProfile for this player. This will cause this player
|
|
|
|
+ * to be reregistered to all clients that can currently see this player
|
|
|
|
+ * @param profile The new profile to use
|
|
|
|
+ */
|
|
|
|
+ void setPlayerProfile(@NotNull PlayerProfile profile);
|
|
|
|
// Paper end
|
|
|
|
|
|
|
|
// Spigot start
|