Contextual variable name updates
This commit is contained in:
@@ -25,13 +25,13 @@ public class WorkOrder implements Delayed {
|
||||
|
||||
public int workOrderID;
|
||||
public NPC vendor;
|
||||
public int slotCount;
|
||||
public int slots_used;
|
||||
public int total_to_produce;
|
||||
public int total_produced;
|
||||
public HashMap<mbEnums.ResourceType, Integer> production_cost = new HashMap<>();
|
||||
public HashMap<mbEnums.ResourceType, Integer> production_cost_total = new HashMap<>();
|
||||
public int templateID;
|
||||
public String itemName;
|
||||
public String item_name_override;
|
||||
public int prefixToken;
|
||||
public int suffixToken;
|
||||
public long rollingDuration;
|
||||
@@ -66,11 +66,11 @@ public class WorkOrder implements Delayed {
|
||||
|
||||
String outSTring = "\r\nwordOrderID: " + this.workOrderID + "\r\n" +
|
||||
"vendor: " + this.vendor.getObjectUUID() + "\r\n" +
|
||||
"slotCount: " + this.slotCount + "\r\n" +
|
||||
"slots_used: " + this.slots_used + "\r\n" +
|
||||
"total_to_produce: " + this.total_to_produce + "\r\n" +
|
||||
"total_produced: " + this.total_produced + "\r\n" +
|
||||
"templateID: " + this.templateID + "\r\n" +
|
||||
"itemName: " + this.itemName + "\r\n" +
|
||||
"item_name_override: " + this.item_name_override + "\r\n" +
|
||||
"prefixToken: " + this.prefixToken + "\r\n" +
|
||||
"suffixToken: " + this.suffixToken + "\r\n" +
|
||||
"rollingDuration: " + duration + "\r\n" +
|
||||
|
||||
Reference in New Issue
Block a user