Merge pull request #6708 from pchote/ts-tileset-converter

Import the TS temperate tileset.
This commit is contained in:
Matthias Mailänder
2014-10-11 14:12:09 +02:00
9 changed files with 6743 additions and 23 deletions

View File

@@ -81,8 +81,8 @@ namespace OpenRA.FileFormats
var eq = line.IndexOf('=');
if (eq >= 0)
{
key = line.Substring(0, eq);
value = line.Substring(eq + 1, line.Length - eq - 1);
key = line.Substring(0, eq).Trim();
value = line.Substring(eq + 1, line.Length - eq - 1).Trim();
}
if (currentSection == null)