From 498a3d450b4cfc275652b5657647717ed2697ff9 Mon Sep 17 00:00:00 2001 From: MiroslavR Date: Sun, 26 Feb 2017 04:28:28 +0100 Subject: [PATCH] Fix actors colliding with noclipping player --- apps/openmw/mwphysics/physicssystem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/openmw/mwphysics/physicssystem.cpp b/apps/openmw/mwphysics/physicssystem.cpp index 40a3070d8..84039bd31 100644 --- a/apps/openmw/mwphysics/physicssystem.cpp +++ b/apps/openmw/mwphysics/physicssystem.cpp @@ -1338,6 +1338,7 @@ namespace MWPhysics bool cmode = found->second->getCollisionMode(); cmode = !cmode; found->second->enableCollisionMode(cmode); + found->second->enableCollisionBody(cmode); return cmode; }