Who owns a dog?

So recently, I made an adventure map. While I was building it, I came across a pack of wolves, so I tamed them, and sat them down around the map, so that the player who discovered them would get a bit of help.

However, I've had reports that players can't 'unsit' the dogs. Is this because they are linked to my Minecraft account and will only obey my commands? I had assumed they automatically belonged to the person playing the map.


The entity format used to store mob state in the chunks has bonus fields for wolves that include:

  • TAG_String("Owner"): Name of the player that owns this wolf. Empty string if no owner.

I'm trying to figure out how to decompress the chunk file format and see if your name pops up in one of them, but it might take a little work.