Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Clarification to Maintenance Cycle Campaign Setting #4909

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ lblSubRepair.text=Repair
lblSubMaintenance.text=Maintenance
checkMaintenance.text=Make maintenance checks
checkMaintenance.toolTipText=If checked, each unit will make a parts-specific maintenance check at the end of each maintenance cycle
lblMaintenanceDays.text=Maintenance cycle length in days
lblMaintenanceDays.text=Maintenance cycle length in days (combat)
lblMaintenanceDays.toolTipText=This setting determines how frequently maintenance checks are made while on non-Garrison contracts. Peacetime frequency is x4 this value.
lblMaintenanceBonus.text=Maintenance modifier
spnMaintenanceBonus.toolTipText=When checking by parts, Strat Ops applies a -1 bonus to the maintenance check target - you can change this modifier with this value
useQualityMaintenance.text=Use quality modifiers in maintenance checks
Expand Down
1 change: 1 addition & 0 deletions MekHQ/src/mekhq/gui/panes/CampaignOptionsPane.java
Original file line number Diff line number Diff line change
Expand Up @@ -1057,6 +1057,7 @@ private JScrollPane createRepairAndMaintenanceTab() {
JPanel pnlMaintenanceDays = new JPanel();
pnlMaintenanceDays.add(spnMaintenanceDays);
pnlMaintenanceDays.add(new JLabel(resources.getString("lblMaintenanceDays.text")));
pnlMaintenanceDays.setToolTipText(wordWrap(resources.getString("lblMaintenanceDays.toolTipText")));
gridBagConstraints = new GridBagConstraints();
gridBagConstraints.gridx = 0;
gridBagConstraints.gridy = 1;
Expand Down