Skip to content

Commit

Permalink
Merge pull request #6270 from kuronekochomusuke/issue_6261
Browse files Browse the repository at this point in the history
allow aerospace to flee  with remaining movement
  • Loading branch information
HammerGS authored Dec 15, 2024
2 parents a632935 + 5358c1b commit c6de86e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion megamek/src/megamek/client/ui/swing/MovementDisplay.java
Original file line number Diff line number Diff line change
Expand Up @@ -1598,7 +1598,8 @@ && ce().isAero()) {
&& unusedVelocity
&& !offOrReturn
&& !cmd.contains(MoveStepType.LAND)
&& !cmd.contains(MoveStepType.EJECT)) {
&& !cmd.contains(MoveStepType.EJECT)
&& !cmd.contains(MoveStepType.FLEE)) {
String title = Messages.getString("MovementDisplay.VelocityLeft.title");
String body = Messages.getString("MovementDisplay.VelocityLeft.message");
clientgui.doAlertDialog(title, body);
Expand Down

0 comments on commit c6de86e

Please sign in to comment.