mirror of
https://github.com/Zrips/Jobs.git
synced 2024-12-01 23:13:48 +01:00
Update ShopItem.java
This commit is contained in:
parent
846c4f9373
commit
5702d8ef7d
@ -17,17 +17,17 @@ public class ShopItem {
|
|||||||
private int IconData = 0;
|
private int IconData = 0;
|
||||||
private int IconAmount = 1;
|
private int IconAmount = 1;
|
||||||
private String IconName = null;
|
private String IconName = null;
|
||||||
private List<String> IconLore = new ArrayList<String>();
|
private List<String> IconLore = new ArrayList<>();
|
||||||
|
|
||||||
private boolean HideWithoutPerm = false;
|
private boolean HideWithoutPerm = false;
|
||||||
private int RequiredTotalLevels = -1;
|
private int RequiredTotalLevels = -1;
|
||||||
|
|
||||||
private List<String> RequiredPerm = new ArrayList<String>();
|
private List<String> RequiredPerm = new ArrayList<>();
|
||||||
private HashMap<String, Integer> RequiredJobs = new HashMap<String, Integer>();
|
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) {
|
public ShopItem(String NodeName, double price, int IconId) {
|
||||||
this.NodeName = NodeName;
|
this.NodeName = NodeName;
|
||||||
|
Loading…
Reference in New Issue
Block a user