diff options
| author | prep <prep@lindenlab.com> | 2012-05-31 18:03:20 -0400 | 
|---|---|---|
| committer | prep <prep@lindenlab.com> | 2012-05-31 18:03:20 -0400 | 
| commit | f17646cc29e771fb626266dd66c5114aff49e701 (patch) | |
| tree | 77e808ec963db3902bc0c73399c626023a40cb2d | |
| parent | 4617d1a747d1a7e755935d91eaf84594df6bd024 (diff) | |
| parent | 0a10ff0f78ae779ff52e9bd475b4bca534ea1f30 (diff) | |
merge
| -rw-r--r-- | indra/newview/llpathfindingcharacter.cpp | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/indra/newview/llpathfindingcharacter.cpp b/indra/newview/llpathfindingcharacter.cpp index 011a736568..c7843b8fee 100644 --- a/indra/newview/llpathfindingcharacter.cpp +++ b/indra/newview/llpathfindingcharacter.cpp @@ -125,7 +125,9 @@ void LLPathfindingCharacter::parseCharacterData(const LLSD &pCharacterData)  	mRadius = pCharacterData.get(CHARACTER_RADIUS_FIELD).asReal();  	//Create the rep inside the pathing library -	LLPathingLib::getInstance()->createPhysicsCapsuleRep( mLength, mRadius, mIsHorizontal, LLVector3(0,0,0), getUUID() ); +	LLVector3 empty(0,0,0); +	const LLUUID id = getUUID(); +	LLPathingLib::getInstance()->createPhysicsCapsuleRep( mLength, mRadius, mIsHorizontal, empty, id );  #endif // SERVER_SIDE_CHARACTER_SHAPE_ROLLOUT_COMPLETE  } | 
