From 83822f114808b361b2ff438a22d640ce742dd9a3 Mon Sep 17 00:00:00 2001 From: AzaezelX Date: Thu, 17 Apr 2025 11:38:21 -0500 Subject: [PATCH] fix eroneous defaults --- Engine/source/T3D/AI/AIController.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; };