Skip to content

Commit

Permalink
Fixed Bullet collision checker not taking defaults into account. (#2871)
Browse files Browse the repository at this point in the history
  • Loading branch information
werner291 committed Sep 14, 2021
1 parent ffe4697 commit a55b642
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -65,7 +65,7 @@ inline bool acmCheck(const std::string& body_1, const std::string& body_2,

if (acm != nullptr)
{
if (acm->getEntry(body_1, body_2, allowed_type))
if (acm->getAllowedCollision(body_1, body_2, allowed_type))
{
if (allowed_type == collision_detection::AllowedCollision::Type::NEVER)
{
Expand Down

0 comments on commit a55b642

Please sign in to comment.