Skip to content

Commit

Permalink
patched mronic loxDrip issue
Browse files Browse the repository at this point in the history
  • Loading branch information
kh9sd committed Oct 11, 2023
1 parent cbb0d45 commit e709ede
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/comm-boundary/IncomingJsonParsers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ void parseOverrideCommand(const json& message, IECS& ecs){
newOverrideCom.loxPressurant = stringToValveState(overrideElements.at("loxPressurant"));
newOverrideCom.kerPressurant = stringToValveState(overrideElements.at("kerPressurant"));

newOverrideCom.loxPurge = stringToValveState(overrideElements.at("loxDrip"));
newOverrideCom.kerPurge = stringToValveState(overrideElements.at("kerDrip"));
newOverrideCom.loxDrip = stringToValveState(overrideElements.at("loxDrip"));
newOverrideCom.kerDrip = stringToValveState(overrideElements.at("kerDrip"));

newOverrideCom.loxPurge = stringToValveState(overrideElements.at("loxPurge"));
newOverrideCom.kerPurge = stringToValveState(overrideElements.at("kerPurge"));
Expand Down

0 comments on commit e709ede

Please sign in to comment.