diff --git a/lib/game/components/flutter_forest.dart b/lib/game/components/flutter_forest.dart index 9e7dd472..51dcd90a 100644 --- a/lib/game/components/flutter_forest.dart +++ b/lib/game/components/flutter_forest.dart @@ -102,8 +102,7 @@ class BigDashNestBumper extends DashNestBumper { final bodyDef = BodyDef() ..position = initialPosition - ..userData = this - ..type = BodyType.static; + ..userData = this; return world.createBody(bodyDef)..createFixture(fixtureDef); } @@ -125,8 +124,7 @@ class SmallDashNestBumper extends DashNestBumper { final bodyDef = BodyDef() ..position = initialPosition - ..userData = this - ..type = BodyType.static; + ..userData = this; return world.createBody(bodyDef)..createFixture(fixtureDef); }