if a pet is still hatchable show the hatchable - icon instead of the "you already own the mount"-icon (#10243)

This commit is contained in:
negue
2018-04-13 15:13:42 +02:00
committed by Matteo Pagliazzi
parent acbca4d1dc
commit 8f1d241e83

View File

@@ -848,14 +848,14 @@
return `Pet Pet-${pet.key} ${pet.eggKey}`;
}
if (pet.mountOwned()) {
return `GreyedOut Pet Pet-${pet.key} ${pet.eggKey}`;
}
if (pet.isHatchable()) {
return 'PixelPaw';
}
if (pet.mountOwned()) {
return `GreyedOut Pet Pet-${pet.key} ${pet.eggKey}`;
}
return 'GreyedOut PixelPaw';
},
hasDrawerTabItems (index) {