Skip to content

Commit

Permalink
Restore support for superheavy VTOLs
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbraginskiy committed Sep 21, 2024
1 parent 6899b5e commit bb5734b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion megameklab/src/megameklab/printing/PrintTank.java
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ protected String formatRun() {

@Override
protected boolean supportsAlternateArmorGrouping() {
if (tank.isSuperHeavy()) {
if (tank.isSuperHeavy() && !(tank instanceof VTOL)) {
return false;
}
if (tank.isNaval() && !tank.hasNoDualTurret()) {
Expand Down

0 comments on commit bb5734b

Please sign in to comment.