Forráskód Böngészése

revise vpw home routine auto close small/large valve bug

chenzk 1 hónapja%!(EXTRA string=óta)
szülő
commit
e6876f2e97
1 módosított fájl, 2 hozzáadás és 2 törlés
  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;
             }