Skip to content

Commit

Permalink
Merge pull request #3843 from SJuliez/scenario-resolution-clan-name-bug
Browse files Browse the repository at this point in the history
Fix chassis lookup
  • Loading branch information
HammerGS authored Feb 13, 2024
2 parents 7ca1733 + 831f5b0 commit bac7954
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MekHQ/src/mekhq/campaign/ResolveScenarioTracker.java
Original file line number Diff line number Diff line change
Expand Up @@ -1913,7 +1913,7 @@ public static class UnitStatus {
public UnitStatus(Unit unit) {
this.unit = unit;
this.name = unit.getName();
chassis = unit.getEntity().getChassis();
chassis = unit.getEntity().getFullChassis();
model = unit.getEntity().getModel();
//assume its a total loss until we find something that says otherwise
totalLoss = true;
Expand Down

0 comments on commit bac7954

Please sign in to comment.