From c5625d0d70a5ed5c859602a4c579d1adf9011854 Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sat, 21 Mar 2015 17:15:38 +0000 Subject: [PATCH] Fix radar color keys. --- OpenRA.Mods.TS/UtilityCommands/LegacyTilesetImporter.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.TS/UtilityCommands/LegacyTilesetImporter.cs b/OpenRA.Mods.TS/UtilityCommands/LegacyTilesetImporter.cs index daf70906be..fb41cc26de 100644 --- a/OpenRA.Mods.TS/UtilityCommands/LegacyTilesetImporter.cs +++ b/OpenRA.Mods.TS/UtilityCommands/LegacyTilesetImporter.cs @@ -110,8 +110,8 @@ namespace OpenRA.Mods.TS.UtilityCommands if (rampType != 0) Console.WriteLine("\t\t\t\tRampType: {0}", rampType); - Console.WriteLine("\t\t\t\tMinimapLeftColor: {0},{1},{2}", s.ReadUInt8(), s.ReadUInt8(), s.ReadUInt8()); - Console.WriteLine("\t\t\t\tMinimapRightColor: {0},{1},{2}", s.ReadUInt8(), s.ReadUInt8(), s.ReadUInt8()); + Console.WriteLine("\t\t\t\tLeftColor: {0},{1},{2}", s.ReadUInt8(), s.ReadUInt8(), s.ReadUInt8()); + Console.WriteLine("\t\t\t\tRightColor: {0},{1},{2}", s.ReadUInt8(), s.ReadUInt8(), s.ReadUInt8()); } } }