summaryrefslogtreecommitdiff
path: root/core/src/kz/ilotterytea/maxon/screens
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/kz/ilotterytea/maxon/screens')
-rw-r--r--core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java b/core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java
index e4e3694..3bf2d79 100644
--- a/core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java
+++ b/core/src/kz/ilotterytea/maxon/screens/game/shop/ShopUI.java
@@ -171,7 +171,7 @@ public class ShopUI {
public void createShopListUI() {
Table table = new Table(this.skin);
- HashSet<Pet> pets = MaxonGame.getInstance().getPetManager().getPets();
+ ArrayList<Pet> pets = MaxonGame.getInstance().getPetManager().getPets();
for (Pet pet : pets) {
PetWidget widget = new PetWidget(this.skin, pet, this.atlas);