1
0
mirror of https://github.com/Zrips/Jobs.git synced 2024-11-29 14:05:25 +01:00

Update ShopItem.java

This commit is contained in:
montlikadani 2018-08-16 18:23:18 +02:00 committed by GitHub
parent 846c4f9373
commit 5702d8ef7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,17 +17,17 @@ public class ShopItem {
private int IconData = 0;
private int IconAmount = 1;
private String IconName = null;
private List<String> IconLore = new ArrayList<String>();
private List<String> IconLore = new ArrayList<>();
private boolean HideWithoutPerm = false;
private int RequiredTotalLevels = -1;
private List<String> RequiredPerm = new ArrayList<String>();
private HashMap<String, Integer> RequiredJobs = new HashMap<String, Integer>();
private List<String> RequiredPerm = new ArrayList<>();
private HashMap<String, Integer> RequiredJobs = new HashMap<>();
private List<String> Commands = new ArrayList<String>();
private List<String> Commands = new ArrayList<>();
private List<JobItems> items = new ArrayList<JobItems>();
private List<JobItems> items = new ArrayList<>();
public ShopItem(String NodeName, double price, int IconId) {
this.NodeName = NodeName;