Skip to content

Commit

Permalink
Merge pull request #3072 from Windchild292/dev_Windchild_HiddenDefaultOn
Browse files Browse the repository at this point in the history
Swapping Hidden Units to be default on, as per Discord discussion
  • Loading branch information
Windchild292 authored Aug 10, 2021
2 parents 1eea0f8 + fc9d5a3 commit fc94489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion megamek/src/megamek/common/options/GameOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public synchronized void initialize() {

IBasicOptionGroup advancedRules = addGroup("advancedRules"); //$NON-NLS-1$
addOption(advancedRules, OptionsConstants.ADVANCED_MINEFIELDS, false); //$NON-NLS-1$
addOption(advancedRules, OptionsConstants.ADVANCED_HIDDEN_UNITS, false); //$NON-NLS-1$
addOption(advancedRules, OptionsConstants.ADVANCED_HIDDEN_UNITS, true); //$NON-NLS-1$
addOption(advancedRules, OptionsConstants.ADVANCED_DOUBLE_BLIND, false); //$NON-NLS-1$
addOption(advancedRules, OptionsConstants.ADVANCED_TACOPS_SENSORS, false); //$NON-NLS-1$
addOption(advancedRules, OptionsConstants.ADVANCED_SUPRESS_ALL_DB_MESSAGES, false); //$NON-NLS-1$
Expand Down

0 comments on commit fc94489

Please sign in to comment.