Skip to content

Commit

Permalink
Merge pull request #4843 from MegaMek/controlled_sideslip
Browse files Browse the repository at this point in the history
Fix modifier for controlled sideslip
  • Loading branch information
HammerGS authored Oct 20, 2023
2 parents 941de44 + be8ea0c commit f7bef84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion megamek/i18n/megamek/common/options/messages.properties
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ GameOptionsInfo.option.reverse_gear.description=If checked, Vehicles may not mix
GameOptionsInfo.option.vehicle_turn_mode.displayableName=TacOps Vehicle Turn Mode
GameOptionsInfo.option.vehicle_turn_mode.description=If checked, Vehicles must make a driving skill check if they attempt to make a turn too sharp for their speed.
GameOptionsInfo.option.vehicle_advanced_maneuvers.displayableName=TacOps Vehicle Advanced Maneuvers
GameOptionsInfo.option.vehicle_advanced_maneuvers.description=If checked, Vehicles may used overdrive, bootlegger, and controlled sideslip maneuversand WiGEs get bonus MP for descent. Overdrive requires TacOps Sprinting.
GameOptionsInfo.option.vehicle_advanced_maneuvers.description=If checked, Vehicles may used overdrive, bootlegger, and controlled sideslip maneuvers and WiGEs get bonus MP for descent. Overdrive requires TacOps Sprinting.
GameOptionsInfo.option.tacops_hull_down.displayableName=TacOps Hull Down
GameOptionsInfo.option.tacops_hull_down.description=If checked, Meks and vehicles may go hull down for additional cover
GameOptionsInfo.option.tacops_falling_expanded.displayableName=TacOps Falling (Expanded)
Expand Down
2 changes: 1 addition & 1 deletion megamek/src/megamek/common/Entity.java
Original file line number Diff line number Diff line change
Expand Up @@ -11376,7 +11376,7 @@ public PilotingRollData checkSideSlip(EntityMovementType moveType,
&& lastPos.direction(curPos) % 3 != curFacing % 3
&& !(isUsingManAce() && (overallMoveType == EntityMovementType.MOVE_WALK
|| overallMoveType == EntityMovementType.MOVE_VTOL_WALK))) {
roll.append(new PilotingRollData(getId(), 0, "controlled sideslip"));
roll.append(new PilotingRollData(getId(), -1, "controlled sideslip"));
} else {
roll.addModifier(TargetRoll.CHECK_FALSE,
"Check false: not apparently sideslipping");
Expand Down

0 comments on commit f7bef84

Please sign in to comment.