We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca9f90f commit 20a19f4Copy full SHA for 20a19f4
Runtime/RosSharpDefinitions/Robot.cs
@@ -108,7 +108,7 @@ private List<Tuple<string,string>> ReadDisableCollision(XElement node)
108
{
109
var disable_collisions =
110
from child in node.Elements("disable_collision")
111
- select new Tuple<string,string>(child.Attribute("joint1").Value,child.Attribute("joint2").Value);
+ select new Tuple<string,string>(child.Attribute("link1").Value,child.Attribute("link2").Value);
112
return disable_collisions.ToList();
113
}
114
0 commit comments