No longer write the map_data header anymore.

Like discussed at the FOSDEM, those embedded WML attributes are not used
anymore.
This commit is contained in:
fendrin 2014-03-15 17:25:50 +01:00
parent c565f92af2
commit e0186e9f69

View File

@ -353,9 +353,7 @@ std::string gamemap::write() const
// Let the low level converter do the conversion
std::ostringstream s;
s << "border_size=" << border_size_ << "\nusage="
<< (usage_ == IS_MAP ? "map" : "mask") << "\n\n"
<< t_translation::write_game_map(tiles_, starting_positions)
s << t_translation::write_game_map(tiles_, starting_positions)
<< "\n";
return s.str();
}