- typo for savegame versioning of AActor::weaponspecial: it was introduced in savegame version 4512, not 4511.

This commit is contained in:
Christoph Oelckers 2014-09-16 08:42:27 +02:00
parent 4be9a71636
commit 864adde92e

View file

@ -206,7 +206,7 @@ void AActor::Serialize (FArchive &arc)
{
arc << flags7;
}
if (SaveVersion >= 4511)
if (SaveVersion >= 4512)
{
arc << weaponspecial;
}