Don't support windmill direction on old DF

develop
Japa 2017-07-04 21:10:59 +05:30
parent 8a0777bb1e
commit 03772a6899
1 changed files with 2 additions and 0 deletions

@ -847,6 +847,7 @@ void CopyBuilding(int buildingIndex, RemoteFortressReader::BuildingInstance * re
auto actual = strict_virtual_cast<df::building_windmillst>(local_build);
if (actual)
{
#if DF_VERSION_INT > 34011
if (actual->orient_x < 0)
remote_build->set_direction(WEST);
else if (actual->orient_x > 0)
@ -856,6 +857,7 @@ void CopyBuilding(int buildingIndex, RemoteFortressReader::BuildingInstance * re
else if (actual->orient_y > 0)
remote_build->set_direction(SOUTH);
else
#endif
remote_build->set_direction(WEST);
if (actual->machine.machine_id >= 0)
{