The bug
Taming a single wolf triggers the achievement "A Complete Catalogue" somehow.
Linked issues
is duplicated by 103
Attachments
Comments 24
I can confirm for horses as well. Tamed a horse in instantly got the "A Complete Catalogue" challenge as well (which honestly confused me at first)
can confirm, I was confused when it played the challenge complete sound, hope they fix this as I was looking forward to doing it regularly
This just happened to me! I've only tamed black cats so far, and just now tamed a horse which game me that advancement. I'm on 18w49a.
I looked at the .json file, and I think I figured out why this bug occurs: the tame_animal
trigger doesn't have an entity type
defined!
{{It doesn't have a
type}}. The game checks the tag anyway, and if the mob cannot have the tag, the game activates the trigger, due to the situation being considered invalid. This applies for all requirements, which is why the player gets the advancement instantly when taming another mob, rather than just triggering one of the requirements. An example is the "textures/entity/cat/jellie.png" trigger:
"textures/entity/cat/jellie.png": {
"trigger": "minecraft:tame_animal",
"conditions": {
"entity": {
"catType": "minecraft:textures/entity/cat/jellie.png"
}
}
should be (I'm not good with json):
"textures/entity/cat/jellie.png": {
"trigger": "minecraft:tame_animal",
"conditions": {
"entity": {
"catType": "minecraft:textures/entity/cat/jellie.png",
"type": "minecraft:cat"
}
}
Guys, the 50a version has already been marked as affected, you don't need to reconfirm it three times.
I confirm this bug ! I try with a wolf and I obtain the success.