SPIGOT-5038: Inventory.getHolder returns null for wandering traders

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2019-06-07 19:36:40 +10:00
parent 809dcc249d
commit 2fdf052be1

View file

@ -49,7 +49,7 @@
+ }
+
+ public org.bukkit.inventory.InventoryHolder getOwner() {
+ return (merchant instanceof EntityVillager) ? (CraftAbstractVillager) ((EntityVillager) this.merchant).getBukkitEntity() : null;
+ return (merchant instanceof EntityVillagerAbstract) ? (CraftAbstractVillager) ((EntityVillagerAbstract) this.merchant).getBukkitEntity() : null;
+ }
+
+ @Override