Browse Source

revise vpw home routine auto close small/large valve bug

chenzk 4 days ago
parent
commit
e6876f2e97
1 changed files with 2 additions and 2 deletions
  1. 2 2
      PunkHPX8_RT/Modules/VpwMain/VPWHomeRoutine.cs

+ 2 - 2
PunkHPX8_RT/Modules/VpwMain/VPWHomeRoutine.cs

@@ -414,12 +414,12 @@ namespace PunkHPX8_RT.Modules.VpwMain
                 if (cellFlow < _cellFlowStartLimit)
                 {
                     _cellFlowOk[item.Module] = false;
-                    item.FlowSmallOff();
-                    item.FlowLargeOff();
                 }
                 else
                 {
                     _cellFlowOk[item.Module] = true;
+                    item.FlowSmallOff();
+                    item.FlowLargeOff();
                 }
                 _cellFlows[item.Module] = cellFlow;
             }