9
0
mirror of https://github.com/LeavesMC/Leaves.git synced 2025-12-30 04:19:30 +00:00

fix: fix properties write

This commit is contained in:
MC_XiaoHei
2025-09-26 13:28:29 +08:00
parent f06bfa762e
commit 8ebdcdcbdc

View File

@@ -5,6 +5,7 @@ import com.mojang.authlib.GameProfile;
import com.mojang.authlib.properties.Property;
import com.mojang.logging.LogUtils;
import io.papermc.paper.adventure.PaperAdventure;
import io.papermc.paper.profile.MutablePropertyMap;
import net.kyori.adventure.text.format.NamedTextColor;
import net.kyori.adventure.text.format.Style;
import net.minecraft.nbt.CompoundTag;
@@ -346,7 +347,7 @@ public class BotList {
@Contract("_, _, _ -> new")
public static @NotNull GameProfile createBotProfile(UUID uuid, String name, String[] skin) {
GameProfile profile = new GameProfile(uuid, name);
GameProfile profile = new GameProfile(uuid, name, new MutablePropertyMap());
profile.properties().put("is_bot", new Property("is_bot", "true"));
if (skin != null) {
profile.properties().put("textures", new Property("textures", skin[0], skin[1]));