Skip to content

Commit

Permalink
Make sure Pilots can be added to SH and Tripod 'mechs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sleet01 committed Feb 24, 2024
1 parent 93e81a6 commit 00dd1d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MekHQ/src/mekhq/gui/menus/AssignPersonToUnitMenu.java
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ private void initialize(final Campaign campaign, final Person... people) {
// Pilot Menu
if (unit.canTakeMoreDrivers()) {
// Pilot Menu - Solo Pilot and VTOL Pilot Assignment
if (singlePerson && (unit.usesSoloPilot() || (entity instanceof VTOL))) {
if (singlePerson && (unit.usesSoloPilot() || (entity instanceof VTOL) || entity.isSuperHeavy() || entity.isTripodMek())) {
final boolean valid;
if (entity instanceof Mech) {
valid = areAllBattleMechPilots;
Expand Down

0 comments on commit 00dd1d9

Please sign in to comment.