[SPIGOT-2513] wolf.setOwner() doesn't take effect until server restart Created: 11/Jul/16 Updated: 19/Jul/23 Resolved: 19/Jul/23 |
|
Status: | Closed |
Project: | Spigot |
Component/s: | None |
Affects Version/s: | None |
Fix Version/s: | None |
Type: | Bug | Priority: | Minor |
Reporter: | gizmo | Assignee: | Unassigned |
Resolution: | Cannot Reproduce | Votes: | 0 |
Labels: | 1.10, 1.11, 1.12, 1.13-pre7, bug, entity, spigot |
Version: | git-Spigot-5391d73-0ebb9c7 (MC: 1.10.2) (Implementing API version 1.10.2-R0.1-SNAPSHOT) |
Description |
on a tamed wolf, calling setOwner() appears to successfully update the owner of the wolf, but the original owner is still followed and can still make the wolf sit and stand. The new owner is treated as though he does not own the wolf until the server is restarted. on server restart the wolf properly respects the newly set owner.
i believe setOwner() worked properly in: git-Spigot-8a983f9-e81edfc (MC: 1.8) (Implementing API version 1.8-R0.1-SNAPSHOT) i (think i) noticed this issue first in: git-Spigot-5391d73-0ebb9c7 (MC: 1.10.2) (Implementing API version 1.10.2-R0.1-SNAPSHOT) it is still an issue in: git-Spigot-83d9d09-595ec64 (MC: 1.13-pre7) (Implementing API version 1.13-pre7-R0.1-SNAPSHOT)
Edit: Noticed my comment from 2017, since Ocelots also have this issue i assume it is possibly a problem in a class they are both derived from, and parrots will also have this problem, although i have not tested parrots.
another Edit: i discovered this vanilla command added in 1.13: https://minecraft.gamepedia.com/Commands/data using that command you can do /data merge entity <entityUUID here> {OwnerUUID:<playerUUID here>} to set the owner of a tameable animal, and /data remove entity <entityUUID here> OwnerUUID to remove the owner. It works in vanilla 1.13-pre7 but does not take effect until server restart on spigot 1.13-pre7. I'm not sure what other info I can provide, but i will add more info with another edit if i think of anything to try. |
Comments |
Comment by Marvin Rieple [ 19/Jul/23 ] |
Cannot reproduce on spigot 1.20.1 |
Comment by gizmo [ 29/Aug/18 ] |
ya, the above code works, i said it did and striked my statements out in order to state that what i originally said (the striked through sections) is incorrect. the Wolf class however does not seem to be working correctly though. Although i haven't fully experimented, i can't figure out what is happenning, atm i am under the impression though that Tameable is indeed working correctly, however i am skeptical about Wolf. I am confused about it now, im not sure what's going on so i'm going to just avoid using specific child classes of Tameable and just use Tameable instead. I don't know enough about minecraft/spigot internals to investigate this so im just going to stop commenting on it. |
Comment by Etzelia [ 28/Aug/18 ] |
I used your above code exactly and was still able to correctly set the owner of multiple passive wolves. The only inconsistency was if the wolf was aggro'd, you could take ownership and make it sit, but once it stood up you could no longer make it sit until you died and it lost aggro. EDIT: To clarify, I used the above code and changed Tameable to Wolf. |
Comment by gizmo [ 28/Aug/18 ] |
@EventHandler public void onPlayerInteractAtEntity(PlayerInteractAtEntityEvent evt) { if(evt.getHand().equals(EquipmentSlot.HAND)) if ((evt.getRightClicked() instanceof Tameable)) { Tameable ent = (Tameable)evt.getRightClicked(); if (ent.isTamed()) { if (!ent.getOwner().equals(evt.getPlayer())) { ent.setOwner(evt.getPlayer()); } } } } } code should allow anyone to interact with tameables ,
nevermind, it does work with Tameable, but Wolf class doesn't work? the above code works, however but if you replace Tameable with Wolf then it is broken it seems... Odd but that's fine, sorry for the many edits, i got confused with the behavior i was seeing in 1.13.1.
|
Comment by Etzelia [ 28/Aug/18 ] |
I cannot re-create this issue. I was able to set the owner through a plugin using various accounts and it always correctly updated to the new owner. CraftBukkit version git-Spigot-2440e18-4228a56 (MC: 1.13.1) API version 1.13.1-R0.1-SNAPSHOT
Tested using this tiny sample plugin code. @EventHandler public void onEvent(PlayerInteractEntityEvent event) { Entity entity = event.getRightClicked(); Player player = event.getPlayer(); if (player.isSneaking() && (entity instanceof Tameable)) { Tameable tameable = (Tameable) entity; tameable.setOwner(player); } } I also ran a test using Wolf directly instead of casting as Tameable. |
Comment by Hex [ 24/Jul/18 ] |
I'm bumping this up to major priority because this is a good time to investigate this bug. |
Comment by gizmo [ 25/Jan/17 ] |
still not working correctly as of CraftBukkit version git-Spigot-b32c8f8-4d3bf20 (MC: 1.11.2) API version 1.11.2-R0.1-SNAPSHOT |
Comment by gizmo [ 11/Jul/16 ] |
Edit: Also, Ocelots have the same issue |