From 0b2b167d33a791b5ff81930530aa3e6eba366974 Mon Sep 17 00:00:00 2001 From: James <150948866+jameslaight@users.noreply.github.com> Date: Sun, 21 Apr 2024 16:03:26 +0100 Subject: [PATCH] spelled shope wrong sorry --- core/src/com/monjaro/gamejam/main/Game.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/com/monjaro/gamejam/main/Game.java b/core/src/com/monjaro/gamejam/main/Game.java index aaa01bf..57dbd9f 100644 --- a/core/src/com/monjaro/gamejam/main/Game.java +++ b/core/src/com/monjaro/gamejam/main/Game.java @@ -30,7 +30,7 @@ public class Game extends ApplicationAdapter { private Round round; private int roundNumber = 0; - private List shop = new ArrayList<>(); + private List shope = new ArrayList<>(); private UI ui; private SegmentUI segUi; @@ -202,12 +202,12 @@ public class Game extends ApplicationAdapter { return round; } - private void fillShop() { + private void fillShope() { } - public List getShop() { - return shop; + public List getShope() { + return shope; } }