View Single Post
Bug in botmans changepitch function
Old
  (#1)
Rick
Council Member
 
Rick's Avatar
 
Status: Offline
Posts: 690
Join Date: Dec 2003
Location: Holland
Default Bug in botmans changepitch function - 15-04-2004

There is a bug in botmans changepitch function;
Code:
 current = pEdict->v.v_angle.x;
should be
Code:
 current = -pEdict->v.v_angle.x;
This is because the x angle is reverted...
  
Reply With Quote