We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a901b45 commit 3de383aCopy full SHA for 3de383a
CHANGELOG.md
@@ -40,7 +40,7 @@ Attention: The newest changes should be on top -->
40
41
### Fixed
42
43
--
+- BUG: Time Node Merge Not Including Controllers [#647](https://github.com/RocketPy-Team/RocketPy/pull/647)
44
45
## [v1.4.1] - 2024-07-20
46
rocketpy/simulation/flight.py
@@ -3498,6 +3498,7 @@ def merge(self):
3498
try:
3499
# Try to access the node and merge if it exists
3500
tmp_dict[time].parachutes += node.parachutes
3501
+ tmp_dict[time]._controllers += node._controllers
3502
tmp_dict[time].callbacks += node.callbacks
3503
except KeyError:
3504
# If the node does not exist, add it to the dictionary
0 commit comments