From bdce0570bd892dc4d7cc4e8a28b5edfb6fd7eb4f Mon Sep 17 00:00:00 2001 From: JovialFeline Date: Tue, 27 Aug 2024 13:57:37 -0400 Subject: [PATCH] Remove IRON offset from RA1 map imports --- OpenRA.Mods.Cnc/UtilityCommands/ImportRedAlertMapCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Cnc/UtilityCommands/ImportRedAlertMapCommand.cs b/OpenRA.Mods.Cnc/UtilityCommands/ImportRedAlertMapCommand.cs index e2d36c53d4..e302263a76 100644 --- a/OpenRA.Mods.Cnc/UtilityCommands/ImportRedAlertMapCommand.cs +++ b/OpenRA.Mods.Cnc/UtilityCommands/ImportRedAlertMapCommand.cs @@ -131,7 +131,7 @@ namespace OpenRA.Mods.Cnc.UtilityCommands var newLoc = new CPos(loc % MapSize, loc / MapSize); var vectorDown = new CVec(0, 1); - if (input == "tsla" || input == "agun" || input == "gap" || input == "apwr" || input == "iron") + if (input == "tsla" || input == "agun" || input == "gap" || input == "apwr") newLoc += vectorDown; return newLoc;