- added NeuralStunner's player.userange submission, but changed it to use the value directly from the PlayerPawn data.

- bumped savegame version for addition of APlayerPawn::userange.
This commit is contained in:
Christoph Oelckers 2013-07-22 22:37:50 +02:00
commit 83bd8ba1b8
6 changed files with 32 additions and 7 deletions

View file

@ -474,6 +474,10 @@ void APlayerPawn::Serialize (FArchive &arc)
{
arc << GruntSpeed << FallingScreamMinSpeed << FallingScreamMaxSpeed;
}
if (SaveVersion >= 4502)
{
arc << UseRange;
}
}
//===========================================================================