Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Directory Lookup for Alpha Strike SV #4993

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,6 @@ private static String getImagePath(final ASCardDisplayable element) {
return DIR_NAME_SPACESTATION;
case JS:
return DIR_NAME_JUMPSHIP;
case CF:
return DIR_NAME_CONVFIGHTER;
case DS:
case DA:
return DIR_NAME_DROPSHIP;
Expand All @@ -228,6 +226,8 @@ private static String getImagePath(final ASCardDisplayable element) {
if (!element.hasMovementMode("a")) {
return DIR_NAME_VEHICLE;
} // intentional fall through
case CF:
return DIR_NAME_CONVFIGHTER;
case AF:
return DIR_NAME_FIGHTER;
default:
Expand Down