Use correct itemType for SpecialItems

This commit is contained in:
Carl Vuorinen 2021-04-05 17:28:42 +03:00
parent ff6dac2aae
commit 9c4be3cb80

View file

@ -14,7 +14,7 @@ open class SpecialItems : RealmObject() {
ownedItems?.forEach {
if (!it.isManaged) {
it.userID = userId
it.itemType = "eggs"
it.itemType = "special"
}
}
}