mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 18:28:00 +00:00
- Adding purchase restrictions for Quest Pet based on the user's level
This commit is contained in:
@@ -144,7 +144,14 @@ public class ViewStall extends JPanel {
|
||||
}
|
||||
|
||||
final QuestAssets qS = qData.getAssets();
|
||||
this.lblStats.setText("Credits: " + qS.getCredits() + " Life: " + qS.getLife(qData.getMode()));
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("Credits: ");
|
||||
sb.append(qS.getCredits());
|
||||
sb.append(" Life: ");
|
||||
sb.append(qS.getLife(qData.getMode()));
|
||||
sb.append(" Level: ");
|
||||
sb.append(qData.getLevel());
|
||||
this.lblStats.setText(sb.toString());
|
||||
|
||||
final List<IQuestBazaarItem> items = qData.getBazaar().getItems(qData, this.stall.getName());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user