Skip to content

Commit

Permalink
path_tracer: Exclude more dynamic links.
Browse files Browse the repository at this point in the history
  • Loading branch information
peci1 committed Oct 26, 2020
1 parent 0422235 commit 5e6335a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subt_ign/src/path_tracer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,8 @@ void Processor::Cb(const ignition::msgs::Pose_V &_msg)
{
// Only conder robots.
std::string name = _msg.pose(i).name();
if (name.find("_wheel") != std::string::npos ||
name.find("rotor_") != std::string::npos || name == "base_link") {
if (name.find("_wheel") != std::string::npos || name.find("breadcrumb_") != std::string::npos ||
name.find("rotor_") != std::string::npos || name.find("Rock_") != std::string::npos || name == "base_link") {
continue;
}

Expand Down

0 comments on commit 5e6335a

Please sign in to comment.