配置を逆転させていたミスを修正

This commit is contained in:
harukin-expo-dev-env 2025-02-22 05:29:00 +00:00
parent a4eda11b2d
commit 9a157d711b

View File

@ -291,16 +291,16 @@ export const EachTrainInfoCore = ({
} else if (pos[1] == "児島" && pos[0] == "宇多津") { } else if (pos[1] == "児島" && pos[0] == "宇多津") {
setCurrentPosition(["Y09", "M12"]); setCurrentPosition(["Y09", "M12"]);
return; return;
}else if (pos[1] == "伊予若宮" && pos[0] == "伊予白滝") { }else if (pos[0] == "伊予若宮" && pos[1] == "伊予白滝") {
setCurrentPosition(["S18", "S14"]); setCurrentPosition(["S18", "S14"]);
return; return;
} else if (pos[1] == "伊予白滝" && pos[0] == "伊予若宮") { } else if (pos[0] == "伊予白滝" && pos[1] == "伊予若宮") {
setCurrentPosition(["S14", "S18"]); setCurrentPosition(["S14", "S18"]);
return; return;
}else if (pos[1] == "伊予大洲" && pos[0] == "伊予若宮") { } else if (pos[0] == "伊予大洲" && pos[1] == "伊予若宮") {
setCurrentPosition(["U14", "U14"]); setCurrentPosition(["U14", "U14"]);
return; return;
}else if (pos[1] == "伊予若宮" && pos[0] == "伊予大洲") { } else if (pos[0] == "伊予若宮" && pos[1] == "伊予大洲") {
setCurrentPosition(["U14", "U14"]); setCurrentPosition(["U14", "U14"]);
return; return;
} }