diff --git a/src/actor.rs b/src/actor.rs index ee0499a..16d312a 100644 --- a/src/actor.rs +++ b/src/actor.rs @@ -5,8 +5,8 @@ use bevy::math::DVec3; use crate::{actor, audio, camera, chat, commands, effects, hud, nature, var, world}; pub const ENGINE_SPEED_FACTOR: f32 = 30.0; -const MAX_TRANSMISSION_DISTANCE: f32 = 60.0; -const MAX_INTERACT_DISTANCE: f32 = 30.0; +const MAX_TRANSMISSION_DISTANCE: f32 = 100.0; +const MAX_INTERACT_DISTANCE: f32 = 40.0; pub struct ActorPlugin; impl Plugin for ActorPlugin {