diff --git a/lib/game/components/initial_position.dart b/lib/game/components/initial_position.dart index 6b69af60..dc6958d9 100644 --- a/lib/game/components/initial_position.dart +++ b/lib/game/components/initial_position.dart @@ -11,7 +11,7 @@ mixin InitialPosition on BodyComponent { set initialPosition(Vector2 value) { assert( !isLoaded, - 'Cannot set initialPosition after component has been loaded.', + 'Cannot set initialPosition after component has already loaded.', ); if (value == initialPosition) return;