7b0c576798
Allows us much greater control over the Spigot portion of the code and makes us more "proper" Credit to @Dmck2b for originally passing the idea along a while back
29 lines
1.2 KiB
Diff
29 lines
1.2 KiB
Diff
From 47209c2017a78db4067a20e28a7a9c266a74fd80 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
|
|
|