From 3cccc10db1fb2d5b53f57c818c25f9c5f7f82679 Mon Sep 17 00:00:00 2001 From: Aaron Warner <34614077+relent0r@users.noreply.github.com> Date: Sun, 23 Jun 2024 19:01:12 +1200 Subject: [PATCH] AI - Fix incorrect unit set in T2LandAmphibious factory build template (#6286) ## Description of the proposed changes This PR fixes a small error in the AI platoon build templates. The T2LandAmphibious was set to build the Aeon Aurora instead of the Blaze. ## Testing done on the proposed changes Validated that the correct unit was being built post change ## Additional context According to the file history this error has been there for YEARS :D I even went back and checked the original SCFA lua files, the error was present then too. ## Checklist - [x] Changes are annotated, including comments where useful - [ ] Changes are documented in the changelog for the next game version --- changelog/snippets/ai.6286.md | 1 + lua/AI/PlatoonTemplates/LandPlatoonTemplates.lua | 2 +- lua/platoontemplates.lua | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 changelog/snippets/ai.6286.md diff --git a/changelog/snippets/ai.6286.md b/changelog/snippets/ai.6286.md new file mode 100644 index 0000000000..3e8d623b8e --- /dev/null +++ b/changelog/snippets/ai.6286.md @@ -0,0 +1 @@ +- (#6286) Fix T2LandAmphibious factory template as the Aeon Aurora was being built instead of the Aeon Blaze \ No newline at end of file diff --git a/lua/AI/PlatoonTemplates/LandPlatoonTemplates.lua b/lua/AI/PlatoonTemplates/LandPlatoonTemplates.lua index 9e1ace5e78..aa3930a18c 100644 --- a/lua/AI/PlatoonTemplates/LandPlatoonTemplates.lua +++ b/lua/AI/PlatoonTemplates/LandPlatoonTemplates.lua @@ -320,7 +320,7 @@ PlatoonTemplate { { 'uel0203', 1, 1, 'attack', 'none' } }, Aeon = { - { 'ual0201', 1, 1, 'attack', 'none' } + { 'xal0203', 1, 1, 'attack', 'none' } }, Cybran = { { 'url0203', 1, 1, 'attack', 'none' } diff --git a/lua/platoontemplates.lua b/lua/platoontemplates.lua index c5f19cafcc..47a12ee17d 100644 --- a/lua/platoontemplates.lua +++ b/lua/platoontemplates.lua @@ -1061,12 +1061,12 @@ PlatoonTemplates = { T2LandAmphibious1={ "T2LandAmphibious1", "PatrolBaseVectorsAI", - { "ual0201", 1, 6, "attack", "GrowthFormation" } + { "xal0203", 1, 6, "attack", "GrowthFormation" } }, T2LandAmphibious2={ "T2LandAmphibious2", "PatrolBaseVectorsAI", - { "ual0201", -1, 4, "attack", "GrowthFormation" } + { "xal0203", -1, 4, "attack", "GrowthFormation" } }, T2LandArtillery1={ "T2LandArtillery1",