source-sdk-2013 icon indicating copy to clipboard operation
source-sdk-2013 copied to clipboard

[HL2MP] Fix inverted MIN/MAX punch angles for the AR2

Open speedvoltage opened this issue 9 months ago • 0 comments

Issue: In pOwner->ViewPunch( QAngle( SharedRandomInt( "ar2pax", -8, -12 ), SharedRandomInt( "ar2pay", 1, 2 ), 0 ) );, it looks like the values were inverted for the AR2.

Fix: Set to pOwner->ViewPunch( QAngle( SharedRandomInt( "ar2pax", -12, -8 ), SharedRandomInt( "ar2pay", 1, 2 ), 0 ) );

speedvoltage avatar Mar 14 '25 21:03 speedvoltage