Skip to content

Commit 8c42bd8

Browse files
committed
fix bug
1 parent f54ab6a commit 8c42bd8

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

core/src/main/java/com/amhsrobotics/circuitsim/hardware/devices/Falcon.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,8 @@ public String getCAN(Cable c1, Cable c2) {
5151
} else if (getOther(2) instanceof PowerDistributionPanel && getOther(3) instanceof PowerDistributionPanel) {
5252
if ((getNum(2) == 9 && getNum(3) == 8) || (getNum(2) == 7 && getNum(3) == 6)) {
5353
return "PDP";
54-
} else {
55-
return "Incorrectly wired to PDP";
5654
}
55+
return "Incorrectly wired to PDP";
5756
} else if (getOther(2) instanceof PneumaticsControlModule && getOther(3) instanceof PneumaticsControlModule) {
5857
if ((getNum(2) == 5 && getNum(3) == 4) || (getNum(2) == 3 && getNum(3) == 2)) {
5958
return "PCM";
@@ -150,7 +149,7 @@ public String check() {
150149
(getCAN(get(3), get(2)).equals("RoboRIO") && getCAN(get(5), get(4)).equals("PDP")))) {
151150
String ans = "";
152151

153-
if (!getCAN(get(3), get(2)).equals("PDP") && !getCAN(get(3), get(2)).equals("PCM")) {
152+
if (!getCAN(get(3), get(2)).equals("PDP") && !getCAN(get(3), get(2)).equals("PCM") && !getCAN(get(3), get(2)).equals("RoboRIO")) {
154153
ans += getCAN(get(3), get(2));
155154
} else {
156155
if (getCAN(get(3), get(2)).equals("PDP")) {
@@ -160,7 +159,7 @@ public String check() {
160159
}
161160
}
162161

163-
if (!getCAN(get(5), get(4)).equals("PDP") && !getCAN(get(5), get(4)).equals("PCM")) {
162+
if (!getCAN(get(5), get(4)).equals("PDP") && !getCAN(get(5), get(4)).equals("PCM") && !getCAN(get(5), get(4)).equals("RoboRIO")) {
164163
if (!getCAN(get(5), get(4)).equals(ans)) {
165164
if (ans.length() > 0) {
166165
ans += "\n";

core/src/main/java/com/amhsrobotics/circuitsim/wiring/CableManager.java

+2
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,15 @@ public static void mergeCables(Cable cable1, Cable cable2, boolean cable1begin,
133133
cable2.mergeCable(cable1, cable1begin, cable2begin);
134134
cable2.color2 = cable1.color;
135135
deleteCable(cable1);
136+
CircuitGUIManager.getSim().changed = true;
136137
} else {
137138
CircuitGUIManager.popup.activateError("A crimped cable cannot be connected to a regular cable");
138139
}
139140
} else {
140141
if (!(cable1 instanceof CrimpedCable)) {
141142
cable1.mergeCable(cable2, cable2begin, cable1begin);
142143
deleteCable(cable2);
144+
CircuitGUIManager.getSim().changed = true;
143145
} else {
144146
CircuitGUIManager.popup.activateError("A crimped cable cannot be connected to a regular cable");
145147
}

0 commit comments

Comments
 (0)