This commit is contained in:
Charles 2001-07-11 18:15:41 +00:00
parent c871631cc0
commit 40f3d3d6cc
10 changed files with 42 additions and 73 deletions

View file

@ -145,13 +145,13 @@ void CNpcConveyorPlatform::processMovement( int _frames )
{
moveX = distX;
if ( moveX > 1 )
if ( moveX > 4 )
{
moveX = 1;
moveX = 4;
}
else if ( moveX < -1 )
else if ( moveX < -4 )
{
moveX = -1;
moveX = -4;
}
}
else