Minor class cleanup

This commit is contained in:
2024-04-08 17:40:38 -04:00
parent d3e0146d86
commit 69416528b3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -121,7 +121,7 @@ public enum ForgeManager implements Runnable {
return rollingDuration;
}
public static int getAvailableSlots(WorkOrder workOrder) {
public static int calcAvailableSlots(WorkOrder workOrder) {
int availableSlots = workOrder.vendor.getRank();
@@ -87,7 +87,7 @@ public class ItemProductionMsgHandler extends AbstractClientMsgHandler {
workOrder.suffixToken = msg.sToken;
workOrder.itemName = msg.name;
workOrder.rollingDuration = ForgeManager.calcRollingDuration(workOrder);
workOrder.slotCount = ForgeManager.getAvailableSlots(workOrder);
workOrder.slotCount = ForgeManager.calcAvailableSlots(workOrder);
// Validate vendor can roll this item