Browse Source

Unused variable removed

combat-2
MagicBot 6 months ago
parent
commit
19bdb89c0f
  1. 2
      src/engine/loot/WorkOrder.java

2
src/engine/loot/WorkOrder.java

@ -53,7 +53,6 @@ public class WorkOrder implements Delayed { @@ -53,7 +53,6 @@ public class WorkOrder implements Delayed {
public long rollingDuration;
public long completionTime;
public boolean runCompleted = false;
public boolean runCanceled = false;
// This collection is serialized to the vendor rolling window in ManageNPCMsg.
@ -246,7 +245,6 @@ public class WorkOrder implements Delayed { @@ -246,7 +245,6 @@ public class WorkOrder implements Delayed {
"rollingDuration: " + duration + "\r\n" +
"completionTime: " + localDateTime + "\r\n" +
"runCompleted: " + this.runCompleted + "\r\n" +
"runCanceled: " + this.runCanceled + "\r\n" +
"productionCost: " + this.production_cost.toString() + "\r\n" +
"totalProductionCost:: " + this.production_cost_total.toString();

Loading…
Cancel
Save