Because Bukkit doesn't set this automatically with setTamed. Go figure. Fixes #1888

This commit is contained in:
GJ
2014-02-28 11:50:14 -05:00
parent a2cac82cba
commit 47db522cc1
2 changed files with 2 additions and 1 deletions

View File

@ -225,9 +225,9 @@ public class TamingManager extends SkillManager {
for (int i = 0; i < amount; i++) {
LivingEntity entity = (LivingEntity) player.getWorld().spawnEntity(player.getLocation(), type);
entity.setMetadata(mcMMO.entityMetadataKey, mcMMO.metadataValue);
((Tameable) entity).setOwner(player);
entity.setRemoveWhenFarAway(false);
switch (type) {
case OCELOT: