Added new mode to production to stop it from showing on the downed tools.

This commit is contained in:
Daniel Wathen
2023-04-26 17:25:00 -07:00
parent 78c9421913
commit 3a2e68043c

View File

@ -174,6 +174,9 @@ public class ToolEventView
if (evnt.ToUpper() == "WAITING_FOR_ENGINEER_SCHEDULED") if (evnt.ToUpper() == "WAITING_FOR_ENGINEER_SCHEDULED")
return true; return true;
if (evnt.ToUpper() == "UP_WITH_INCREASED_SAMPLING_SURFACE")
return true;
return false; return false;
} }