diff --git a/src/actor.rs b/src/actor.rs index 80e8823..067d7dd 100644 --- a/src/actor.rs +++ b/src/actor.rs @@ -11,7 +11,6 @@ impl Plugin for ActorPlugin { app.register_type::(); app.add_systems(FixedUpdate, ( update_physics_lifeforms, - update_physics_actors, )); app.add_systems(Update, ( handle_new_conversations, @@ -187,19 +186,6 @@ const SUIT_SIMPLE: Suit = Suit { integrity: 1e5, }; -pub fn update_physics_actors( - time: Res