Originally Posted by
TehVoyager
Hey pong, i'd like to take this momment in the middle of complaints that your profile isnt 100% PERFECT "I DO NOTHING AND GET TOP DEEPS" (even though its still the start of the expansion) to thank you for the hard work, dedication, and time expended coding something that people seem to just want to cry about. were not all looking for OMG MUST DO MORE DPS THAN SIMCRAFT AND RAIDBOTS EVERY TIME PERIOD. some of us are just looking for help for our offspec, and are quite happy and pleased with the results of your work, so far.
Agree with all of the above 
With that being said, did you implement some facing code recently? Was on Garalon and the rotation would mostly only use Mangle on the legs.
I see that there is code to handle facing in the PQR_FirePong.lua, but I couldn't work out if it was being used. Code as follows:
Code:
function PQR_FireMangle(var1,var2,var3,var4)
if UnitExists(var2) then
-- local facing1 = PQR_UnitFacing(var2,var1)
local facing2 = PQR_UnitFacing(var2,var3)
local facing3 = PQR_UnitFacing(var3,var1)
if facing2 == true and facing3 == true then
return true
end
return false
end
end