From e552030d402a0bd608bdffdd99c538eb6fac0528 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Tue, 16 Jul 2019 15:33:18 -0700 Subject: [PATCH] Fix approach PathFind call --- Runtime/MP1/World/CTryclops.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/MP1/World/CTryclops.cpp b/Runtime/MP1/World/CTryclops.cpp index 2c15f9ef2..40cc03294 100644 --- a/Runtime/MP1/World/CTryclops.cpp +++ b/Runtime/MP1/World/CTryclops.cpp @@ -304,7 +304,7 @@ void CTryclops::Cover(CStateManager& mgr, EStateMsg msg, float) { } void CTryclops::Approach(CStateManager& mgr, EStateMsg msg, float arg) { - PathFind(mgr, msg, arg); + CPatterned::PathFind(mgr, msg, arg); ApplySeparation(mgr); if (msg == EStateMsg::Update) GrabBomb(mgr);