Skip to content

Commit

Permalink
fix bad capability code in strategy map
Browse files Browse the repository at this point in the history
  • Loading branch information
RHammond2 committed Jun 27, 2024
1 parent bd90ba4 commit cea0ae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wombat/core/data_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1605,7 +1605,7 @@ def move_equipment_to_end(self, capability: str, ix: int) -> None:
elif capability == "AHV":
self.AHV.append(self.AHV.pop(ix))
elif capability == "VSG":
self.VSG.append(self.AHV.pop(ix))
self.VSG.append(self.VSG.pop(ix))
else:
# This should not even be able to be reached
raise ValueError(
Expand Down

0 comments on commit cea0ae8

Please sign in to comment.