This commit is contained in:
parent
c871631cc0
commit
40f3d3d6cc
10 changed files with 42 additions and 73 deletions
|
@ -161,7 +161,7 @@ void CNpcGaryFriend::think( int _frames )
|
|||
case COLLISION_TYPE_FLAG_MOVE_LEFT:
|
||||
{
|
||||
conveyorOverride = true;
|
||||
Pos.vx--;
|
||||
Pos.vx -= 4;
|
||||
|
||||
break;
|
||||
}
|
||||
|
@ -169,7 +169,7 @@ void CNpcGaryFriend::think( int _frames )
|
|||
case COLLISION_TYPE_FLAG_MOVE_RIGHT:
|
||||
{
|
||||
conveyorOverride = true;
|
||||
Pos.vx++;
|
||||
Pos.vx += 4;
|
||||
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue