1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

updated serialization version to 781

This commit is contained in:
Henning Koehler 2018-02-18 23:32:52 +13:00
parent e2f2568221
commit 9850e7254e
4 changed files with 4 additions and 4 deletions

View File

@ -99,7 +99,7 @@ public:
h & initialArmy;
h & heroClass;
h & secSkillsInit;
if(version >= 778)
if(version >= 781)
{
h & specialty;
}

View File

@ -366,7 +366,7 @@ struct DLL_LINKAGE Bonus : public std::enable_shared_from_this<Bonus>
h & effectRange;
h & limiter;
h & propagator;
if(version >= 778)
if(version >= 781)
h & updater;
}

View File

@ -296,7 +296,7 @@ public:
h & visitedTown;
h & boat;
h & type;
if(version < 778)
if(version < 781)
{
std::vector<HeroSpecial*> specialtyDeprecated;
h & specialtyDeprecated;

View File

@ -12,7 +12,7 @@
#include "../ConstTransitivePtr.h"
#include "../GameConstants.h"
const ui32 SERIALIZATION_VERSION = 780;
const ui32 SERIALIZATION_VERSION = 781;
const ui32 MINIMAL_SERIALIZATION_VERSION = 753;
const std::string SAVEGAME_MAGIC = "VCMISVG";