fix animal gear not being purchasable

This commit is contained in:
Phillip Thelen 2023-01-25 16:26:35 +01:00
parent a07e6e002c
commit 256f6b65e3

View file

@ -57,7 +57,10 @@ class AvatarEquipmentFragment :
}
}
adapter.onUnlock = { equipment ->
lifecycleScope.launchCatching { }
lifecycleScope.launchCatching {
inventoryRepository.purchaseItem("gear", equipment.key ?: "", 1)
userRepository.retrieveUser(forced = true)
}
}
return super.onCreateView(inflater, container, savedInstanceState)
}