diff options
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/world.cpp b/src/world.cpp index 71a7ae7..8a7720c 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -106,6 +106,9 @@ bool world_t::find_path(v2f_t src, v2f_t dst, cmodel_t *cmodel, entity_t *ignore if (ent == ignore) continue; + if (!(ent->cmodel.cflags & cmodel->cflags)) + continue; + center = ent->cmodel.bounds.center(); combined_dims = ent->cmodel.bounds.dims() + cmodel_dims; combined[0] = center - combined_dims / 2; |