Merge pull request #1001 from JapaMala/develop

RemoteFortressReader updates
develop
Japa 2016-10-13 20:05:21 +05:30 committed by GitHub
commit a9ccec07bd
3 changed files with 3 additions and 1 deletions

@ -1 +1 @@
Subproject commit 1c1479db1d3f45a187c1f9d355db1b033c32d4ff
Subproject commit 693d58c8588120ad0a179bdd154cf0ce6035c782

@ -524,6 +524,7 @@ message RegionTile
repeated SiteRealizationBuilding buildings = 14;
repeated MatPair stone_materials = 15;
repeated MatPair tree_materials = 16;
optional int32 snow = 17;
}
message RegionMap

@ -2097,6 +2097,7 @@ static void SetRegionTile(RegionTile * out, df::region_map_entry * e1)
plantMat->set_mat_type(419);
}
}
out->set_snow(e1->snowfall);
}
static command_result GetWorldMapNew(color_ostream &stream, const EmptyMessage *in, WorldMap *out)