diff --git a/Engine/source/T3D/AI/AIController.h b/Engine/source/T3D/AI/AIController.h index d64148a9e..054671171 100644 --- a/Engine/source/T3D/AI/AIController.h +++ b/Engine/source/T3D/AI/AIController.h @@ -118,10 +118,10 @@ public: mTriggerState.mControllerRef = this; mControllerData = NULL; mAIInfo = new AIInfo(this); - mGoal = new AIGoal(this); - mAimTarget = new AIAimTarget(this); - mCover = new AICover(this); mNav = new AINavigation(this); + mGoal = NULL; + mAimTarget = NULL; + mCover = NULL; mMovement.mMoveState = ModeStop; };