Skip to content

Commit

Permalink
Merge pull request #5800 from repligator/bearings-only
Browse files Browse the repository at this point in the history
Removes the 50 hex minimum for bearings-only launches.
  • Loading branch information
SJuliez authored Jul 26, 2024
2 parents 18e9a00 + 515ab6c commit 1a51d83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion megamek/src/megamek/common/RangeType.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class RangeType {
public static final int RANGE_EXTREME = 4;
public static final int RANGE_LOS = 5;
public static final int RANGE_OUT = Integer.MAX_VALUE;
public static final int RANGE_BEARINGS_ONLY_MINIMUM = 51;
public static final int RANGE_BEARINGS_ONLY_MINIMUM = 1;
public static final int RANGE_BEARINGS_ONLY_OUT = 5000;

public int r_min;
Expand Down

0 comments on commit 1a51d83

Please sign in to comment.