diff options
author | Håkon Solbjørg <hakon@solbj.org> | 2023-04-02 10:25:39 +0200 |
---|---|---|
committer | Håkon Solbjørg <hakon@solbj.org> | 2023-04-02 11:50:42 +0200 |
commit | 0a5eb8a3efe6276a11c5ff4caef39e0edb1a3a2b (patch) | |
tree | d09b4d5acb1c7f31ca8780ee590db96b6ce2f810 /planning/planning.cpp | |
parent | 27e6e09e69b7d054acecfd244d59d4f8df887214 (diff) |
add new row
Diffstat (limited to 'planning/planning.cpp')
-rw-r--r-- | planning/planning.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/planning/planning.cpp b/planning/planning.cpp index 94f83cc..e698490 100644 --- a/planning/planning.cpp +++ b/planning/planning.cpp @@ -381,10 +381,12 @@ void Planner::init_switches() // No seats here for TG23 if (i >= 37 && i <= 41) { - // switches.push_back(Switch(i,0)); - // switches.push_back(Switch(i,1)); - // switches.push_back(Switch(i,2)); - // switches.push_back(Switch(i,3)); + //switches.push_back(Switch(i,0)); + //switches.push_back(Switch(i,1)); + if (i == 37) { + switches.push_back(Switch(i,2)); + switches.push_back(Switch(i,3)); + } } } |