2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Fri, 19 Jan 2018 00:36:25 -0500
|
|
|
|
Subject: [PATCH] Add setPlayerProfile API for Skulls
|
|
|
|
|
|
|
|
This allows you to create already filled textures on Skulls to avoid texture lookups
|
|
|
|
which commonly cause rate limit issues with Mojang API
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/block/CraftSkull.java b/src/main/java/org/bukkit/craftbukkit/block/CraftSkull.java
|
2021-10-02 19:21:49 +02:00
|
|
|
index d6a4638271644e31fbc38f5ae9150ded63a6d62f..e89eb5d631b4226d79caf49c89ebb44155e72a0f 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/block/CraftSkull.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/block/CraftSkull.java
|
|
|
|
@@ -1,5 +1,7 @@
|
|
|
|
package org.bukkit.craftbukkit.block;
|
|
|
|
|
|
|
|
+import com.destroystokyo.paper.profile.CraftPlayerProfile;
|
|
|
|
+import com.destroystokyo.paper.profile.PlayerProfile;
|
|
|
|
import com.google.common.base.Preconditions;
|
|
|
|
import com.mojang.authlib.GameProfile;
|
|
|
|
import net.minecraft.server.MinecraftServer;
|
2021-10-02 19:21:49 +02:00
|
|
|
@@ -100,6 +102,20 @@ public class CraftSkull extends CraftBlockEntityState<SkullBlockEntity> implemen
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public void setPlayerProfile(PlayerProfile profile) {
|
|
|
|
+ Preconditions.checkNotNull(profile, "profile");
|
|
|
|
+ this.profile = CraftPlayerProfile.asAuthlibCopy(profile);
|
|
|
|
+ }
|
|
|
|
+
|
2021-06-12 18:56:13 +02:00
|
|
|
+ @javax.annotation.Nullable
|
2021-06-11 14:02:28 +02:00
|
|
|
+ @Override
|
|
|
|
+ public PlayerProfile getPlayerProfile() {
|
|
|
|
+ return profile != null ? CraftPlayerProfile.asBukkitCopy(profile) : null;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
@Override
|
|
|
|
public BlockFace getRotation() {
|
|
|
|
BlockData blockData = getBlockData();
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
|
2021-06-17 14:50:16 +02:00
|
|
|
index 490df0dcfd0e1e0ab05943410493522f86444ef8..7cacc61fed0c610845c67894d1cc68e44f5e46fe 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/inventory/CraftMetaSkull.java
|
|
|
|
@@ -4,10 +4,8 @@ import com.google.common.collect.ImmutableMap.Builder;
|
|
|
|
import com.mojang.authlib.GameProfile;
|
|
|
|
import java.util.Map;
|
|
|
|
import java.util.UUID;
|
|
|
|
-import net.minecraft.nbt.CompoundTag;
|
|
|
|
-import net.minecraft.nbt.NbtUtils;
|
|
|
|
-import net.minecraft.nbt.Tag;
|
|
|
|
-import net.minecraft.world.level.block.entity.SkullBlockEntity;
|
|
|
|
+import com.destroystokyo.paper.profile.CraftPlayerProfile;
|
|
|
|
+import com.destroystokyo.paper.profile.PlayerProfile;
|
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
import org.bukkit.Material;
|
|
|
|
import org.bukkit.OfflinePlayer;
|
|
|
|
@@ -18,6 +16,11 @@ import org.bukkit.craftbukkit.inventory.CraftMetaItem.SerializableMeta;
|
|
|
|
import org.bukkit.craftbukkit.util.CraftMagicNumbers;
|
|
|
|
import org.bukkit.inventory.meta.SkullMeta;
|
|
|
|
|
|
|
|
+import javax.annotation.Nullable;
|
|
|
|
+import net.minecraft.nbt.CompoundTag;
|
|
|
|
+import net.minecraft.nbt.NbtUtils;
|
|
|
|
+import net.minecraft.nbt.Tag;
|
|
|
|
+import net.minecraft.world.level.block.entity.SkullBlockEntity;
|
|
|
|
@DelegateDeserialization(SerializableMeta.class)
|
|
|
|
class CraftMetaSkull extends CraftMetaItem implements SkullMeta {
|
|
|
|
|
2021-06-17 14:50:16 +02:00
|
|
|
@@ -151,6 +154,19 @@ class CraftMetaSkull extends CraftMetaItem implements SkullMeta {
|
2021-06-12 18:56:13 +02:00
|
|
|
return this.hasOwner() ? this.profile.getName() : null;
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start
|
|
|
|
+ @Override
|
|
|
|
+ public void setPlayerProfile(@Nullable PlayerProfile profile) {
|
|
|
|
+ setProfile((profile == null) ? null : CraftPlayerProfile.asAuthlibCopy(profile));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Nullable
|
|
|
|
+ @Override
|
|
|
|
+ public PlayerProfile getPlayerProfile() {
|
|
|
|
+ return profile != null ? CraftPlayerProfile.asBukkitCopy(profile) : null;
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
+
|
|
|
|
@Override
|
|
|
|
public OfflinePlayer getOwningPlayer() {
|
2021-06-12 18:56:13 +02:00
|
|
|
if (this.hasOwner()) {
|