1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-08-13 19:54:17 +02:00

Fix battle bonuses serialization

This commit is contained in:
nordsoft
2023-09-22 13:34:00 +02:00
parent 16b147d588
commit 2a2f0a657e

View File

@@ -39,6 +39,7 @@ PlayerState::PlayerState(PlayerState && other) noexcept:
std::swap(towns, other.towns);
std::swap(dwellings, other.dwellings);
std::swap(quests, other.quests);
std::swap(battleBonuses, other.battleBonuses);
}
PlayerState::~PlayerState() = default;