summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2022-10-15 18:46:07 +0200
committerilotterytea <iltsu@alright.party>2022-10-15 18:46:07 +0200
commite2b205209ce7a747f2b41700204da67a6441f9e7 (patch)
tree20abec4b0ae97d5413fff10ce536ad8a045e9955 /core
parent40b947902a1aff04404d5338227eefdca5c30325 (diff)
Исправлено использование несуществующей переменной
Diffstat (limited to 'core')
-rw-r--r--core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java b/core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java
index 367dfb9..b8c44f9 100644
--- a/core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java
+++ b/core/src/com/ilotterytea/maxoning/ui/PurchaseItem.java
@@ -17,7 +17,7 @@ public class PurchaseItem extends Stack {
Table summary = new Table();
summary.setHeight(super.getHeight());
- Label title = new Label(String.format("%s\n(%s)", name, string), skin, "purchaseitem_title");
+ Label title = new Label(String.format("%s\n(%s)", name, price), skin, "purchaseitem_title");
summary.add(title).fillX().row();