File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -373,7 +373,9 @@ private void initInfoPanel() {
373
373
gridBagConstraints .weightx = 1.0 ;
374
374
panInfo .add (lblCargoSummary , gridBagConstraints );
375
375
376
- if ((getCampaignOptions ().isUseFatigue ()) || (getCampaignOptions ().isUseAdvancedMedical ())) {
376
+ if ((getCampaignOptions ().isUseFatigue ()) ||
377
+ (getCampaignOptions ().isUseAdvancedMedical () ||
378
+ (!getCampaignOptions ().getPrisonerCaptureStyle ().isNone ()))) {
377
379
JLabel lblFacilityCapacitiesHead = new JLabel (resourceMap .getString ("lblFacilityCapacities.text" ));
378
380
gridBagConstraints = new GridBagConstraints ();
379
381
gridBagConstraints .gridx = 0 ;
@@ -648,11 +650,9 @@ private void refreshBasicInfo() {
648
650
}
649
651
}
650
652
651
- if (campaignOptions .isUseFatigue ()) {
652
- try {
653
- lblFacilityCapacities .setText (campaignSummary .getFacilityReport ());
654
- } catch (Exception ignored ) {
655
- }
653
+ try {
654
+ lblFacilityCapacities .setText (campaignSummary .getFacilityReport ());
655
+ } catch (Exception ignored ) {
656
656
}
657
657
}
658
658
You can’t perform that action at this time.
0 commit comments