From f6293abaa430a06bb1b0105f214cc62001b29701 Mon Sep 17 00:00:00 2001 From: Jereth Date: Tue, 9 Sep 2025 20:49:13 +1000 Subject: [PATCH] Bug fix for custom logics - Change default angular values to degrees, to account for change made in previous PR --- TheForceEngine/TFE_ExternalData/dfLogics.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/TheForceEngine/TFE_ExternalData/dfLogics.h b/TheForceEngine/TFE_ExternalData/dfLogics.h index 8a586fe67..4eacfff72 100644 --- a/TheForceEngine/TFE_ExternalData/dfLogics.h +++ b/TheForceEngine/TFE_ExternalData/dfLogics.h @@ -12,7 +12,7 @@ namespace TFE_ExternalData const char* logicName; bool hasGravity = true; bool isFlying = false; - u32 fov = 9557; + u32 fov = 210; // 9557 in DF angle u32 awareRange = 20; const char* alertSound = ""; @@ -45,8 +45,8 @@ namespace TFE_ExternalData u32 speed = 4; u32 verticalSpeed = 10; - u32 rotationSpeed = 0x7fff; - u32 approachVariation = 4096; + u32 rotationSpeed = 720; // 0x7fff in DF angle + u32 approachVariation = 90; // 4096 in DF angle u32 approachOffset = 3; u32 thinkerDelay = 2;