diff --git a/OpenRA.FileFormats/Map/Map.cs b/OpenRA.FileFormats/Map/Map.cs index 95aca52b5d..2f49cf8b8f 100644 --- a/OpenRA.FileFormats/Map/Map.cs +++ b/OpenRA.FileFormats/Map/Map.cs @@ -182,8 +182,6 @@ namespace OpenRA.FileFormats using (var dataStream = File.Create(filepath + ".tmp")) using (var writer = new BinaryWriter(dataStream)) { - writer.BaseStream.Seek(0, SeekOrigin.Begin); - // File header consists of a version byte, followed by 2 ushorts for width and height writer.Write(TileFormat); writer.Write((ushort)MapSize.X);