convention is == false

This commit is contained in:
2024-05-11 09:33:54 -04:00
parent 25f522c539
commit b592f050c2
+2 -2
View File
@@ -159,7 +159,7 @@ public enum ForgeManager implements Runnable {
// Single item configuration
if (!workOrder.multiple_slot_request && workOrder.total_to_produce == 0)
if (workOrder.multiple_slot_request == false && workOrder.total_to_produce == 0)
workOrder.total_to_produce = 1;
// Set total cost for production run
@@ -230,7 +230,7 @@ public enum ForgeManager implements Runnable {
// Single item rolls are always a single slot
if (availableSlots > 0 && !workOrder.multiple_slot_request)
if (availableSlots > 0 && workOrder.multiple_slot_request == false)
availableSlots = 1;
return availableSlots;