2019-03-20 01:28:15 +01:00
|
|
|
From cf924a9f32433bc44b212dcf3315d73869bbd45b Mon Sep 17 00:00:00 2001
|
2018-03-18 17:32:09 +01:00
|
|
|
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
|
2019-03-20 01:28:15 +01:00
|
|
|
index c7bc13e7d..06154a5c5 100644
|
2018-03-18 17:32:09 +01:00
|
|
|
--- a/src/main/java/org/bukkit/entity/Player.java
|
|
|
|
+++ b/src/main/java/org/bukkit/entity/Player.java
|
|
|
|
@@ -3,6 +3,7 @@ package org.bukkit.entity;
|
|
|
|
import java.net.InetSocketAddress;
|
|
|
|
|
|
|
|
import com.destroystokyo.paper.Title;
|
|
|
|
+import com.destroystokyo.paper.profile.PlayerProfile;
|
|
|
|
import org.bukkit.Achievement;
|
|
|
|
import org.bukkit.Effect;
|
2019-03-20 01:28:15 +01:00
|
|
|
import org.bukkit.GameMode;
|
|
|
|
@@ -1746,6 +1747,20 @@ public interface Player extends HumanEntity, Conversable, OfflinePlayer, PluginM
|
2018-03-18 17:32:09 +01: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
|
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ @NotNull
|
2018-03-18 17:32:09 +01:00
|
|
|
+ PlayerProfile getPlayerProfile();
|
|
|
|
+
|
|
|
|
+ /**
|
2018-03-18 18:28:01 +01:00
|
|
|
+ * 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
|
2018-03-18 17:32:09 +01:00
|
|
|
+ */
|
2019-03-20 01:28:15 +01:00
|
|
|
+ void setPlayerProfile(@NotNull PlayerProfile profile);
|
2018-03-18 17:32:09 +01:00
|
|
|
// Paper end
|
|
|
|
|
|
|
|
// Spigot start
|
|
|
|
--
|
2019-03-20 01:28:15 +01:00
|
|
|
2.21.0
|
2018-03-18 17:32:09 +01:00
|
|
|
|