cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
From 209855fb703c6c4774a4f7302391651c241b80f7 Mon Sep 17 00:00:00 2001
|
|
From: Aikar <aikar@aikar.co>
|
|
Date: Wed, 16 Apr 2014 01:40:30 -0400
|
|
Subject: [PATCH] Convert Horses owner to UUID
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityHorse.java b/src/main/java/net/minecraft/server/EntityHorse.java
|
|
index d167c00..e9f6236 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityHorse.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityHorse.java
|
|
@@ -993,6 +993,14 @@ public class EntityHorse extends EntityAnimal implements IInventoryListener {
|
|
if (nbttagcompound.hasKeyOfType("OwnerUUID", 8)) {
|
|
this.setOwnerUUID(nbttagcompound.getString("OwnerUUID"));
|
|
}
|
|
+ // Spigot start
|
|
+ else if (nbttagcompound.hasKey("OwnerName")) {
|
|
+ String owner = nbttagcompound.getString("OwnerName");
|
|
+ if (owner != null && !owner.isEmpty()) {
|
|
+ this.setOwnerUUID(NameReferencingFileConverter.a(owner));
|
|
+ }
|
|
+ }
|
|
+ // Spigot end
|
|
// CraftBukkit start
|
|
if (nbttagcompound.hasKey("Bukkit.MaxDomestication")) {
|
|
this.maxDomestication = nbttagcompound.getInt("Bukkit.MaxDomestication");
|
|
--
|
|
1.9.1
|
|
|