Merge branch 'aweinstock/chase_dist_quickfix' into 'master'

Increase MAX_CHASE_DIST from 20 to 250, so enemies don't ignore you if you're...

See merge request veloren/veloren!1853
This commit is contained in:
Samuel Keiffer 2021-03-06 17:59:44 +00:00
commit e6f5f04c8e

View File

@ -90,7 +90,7 @@ pub struct ReadData<'a> {
const DAMAGE_MEMORY_DURATION: f64 = 0.1;
const FLEE_DURATION: f32 = 3.0;
const MAX_FOLLOW_DIST: f32 = 12.0;
const MAX_CHASE_DIST: f32 = 20.0;
const MAX_CHASE_DIST: f32 = 250.0;
const MAX_FLEE_DIST: f32 = 20.0;
const LISTEN_DIST: f32 = 16.0;
const SEARCH_DIST: f32 = 48.0;