diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dc1e850a..ba1d36558 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ Attention: The newest changes should be on top --> ### Fixed +- BUG: Fix Motor Zero Dry Mass Check [#710](https://github.com/RocketPy-Team/RocketPy/pull/710) - BUG: Fix Environment.max_expected_height for custom atmosphere [#707](https://github.com/RocketPy-Team/RocketPy/pull/707) - BUG: Initialize _Controller Init Parameters [#703](https://github.com/RocketPy-Team/RocketPy/pull/703) - BUG: Rail Buttons Not Accepted in Add Surfaces [#701](https://github.com/RocketPy-Team/RocketPy/pull/701) diff --git a/rocketpy/motors/motor.py b/rocketpy/motors/motor.py index eae7931b4..5fa154d88 100644 --- a/rocketpy/motors/motor.py +++ b/rocketpy/motors/motor.py @@ -370,7 +370,7 @@ def dry_mass(self, dry_mass): dry_mass : float Motor dry mass in kg. """ - if dry_mass: + if dry_mass is not None: if isinstance(dry_mass, (int, float)): self._dry_mass = dry_mass else: