Skip to content

Commit

Permalink
Saves with RSST and RSSS are now restricted to 98.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Mar 17, 2024
1 parent 228d559 commit aa8ee76
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/client/GameSave.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2336,6 +2336,10 @@ std::pair<bool, std::vector<char>> GameSave::serialiseOPS() const
{
RESTRICTVERSION(97, 0);
}
if (particles[i].type == PT_RSST || particles[i].type == PT_RSSS)
{
RESTRICTVERSION(98, 0);
}

//Get the pmap entry for the next particle in the same position
i = partsPosLink[i];
Expand Down

0 comments on commit aa8ee76

Please sign in to comment.