don’t show purple gryphon as hatchable. Fixes #1333

This commit is contained in:
Phillip Thelen 2020-06-25 14:50:52 +02:00
parent 2afef8b2f9
commit d5b113ea7a

View file

@ -96,7 +96,7 @@ class ItemRecyclerAdapter(data: OrderedRealmCollection<OwnedItem>?, autoUpdate:
} else {
hatchingItem?.key + "-" + item?.key
}
val pet = existingPets?.where()?.equalTo("key", petKey)?.findFirst()
val pet = existingPets?.where()?.equalTo("key", petKey)?.notEqualTo("type", "special")?.findFirst()
return pet != null && ownedPets?.get(pet.key)?.trained ?: 0 <= 0
}