Merge branch 'master' into save_ext

# Conflicts:
#	src/saveload/saveload.cpp
#	src/saveload/saveload.h
This commit is contained in:
Jonathan G Rennison
2019-01-21 18:37:47 +00:00
113 changed files with 1599 additions and 1012 deletions

View File

@@ -1317,6 +1317,15 @@ static bool MaxVehiclesChanged(int32 p1)
return true;
}
static bool InvalidateShipPathCache(int32 p1)
{
Ship *s;
FOR_ALL_SHIPS(s) {
s->path.clear();
}
return true;
}
#ifdef ENABLE_NETWORK