mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-09 20:41:23 +01:00
Adding saddles to horses should properly tame horses.
This commit is contained in:
parent
872df26e9d
commit
beef371ae6
@ -232,8 +232,10 @@ public enum MobData
|
|||||||
}
|
}
|
||||||
else if (this.value.equals(Data.HORSESADDLE))
|
else if (this.value.equals(Data.HORSESADDLE))
|
||||||
{
|
{
|
||||||
((Horse)spawned).setTamed(true);
|
final Horse horse = ((Horse)spawned);
|
||||||
((Horse)spawned).getInventory().setSaddle(new ItemStack(Material.SADDLE, 1));
|
horse.setTamed(true);
|
||||||
|
horse.setOwner(target);
|
||||||
|
horse.getInventory().setSaddle(new ItemStack(Material.SADDLE, 1));
|
||||||
}
|
}
|
||||||
else if (this.value.equals(Data.PIGSADDLE))
|
else if (this.value.equals(Data.PIGSADDLE))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user