diff --git a/lib/game/components/flutter_forest/behaviors/flutter_forest_bonus_behavior.dart b/lib/game/components/flutter_forest/behaviors/flutter_forest_bonus_behavior.dart index 8bf41bc9..949fead1 100644 --- a/lib/game/components/flutter_forest/behaviors/flutter_forest_bonus_behavior.dart +++ b/lib/game/components/flutter_forest/behaviors/flutter_forest_bonus_behavior.dart @@ -17,11 +17,11 @@ class FlutterForestBonusBehavior extends Component // merged: // https://github.com/flame-engine/flame/pull/1538 bumper.bloc.stream.listen((state) { - final hasBonus = bumpers.every( + final achievedBonus = bumpers.every( (bumper) => bumper.bloc.state == DashNestBumperState.active, ); - if (hasBonus) { + if (achievedBonus) { gameRef .read() .add(const BonusActivated(GameBonus.dashNest));