Quantcast

* Fix for the crazy arrow

James Whitehead Ii [01-25-08 - 19:45]
* Fix for the crazy arrow
Filename
TomTom_CrazyArrow.lua
diff --git a/TomTom_CrazyArrow.lua b/TomTom_CrazyArrow.lua
index f5468ef..a58c46e 100644
--- a/TomTom_CrazyArrow.lua
+++ b/TomTom_CrazyArrow.lua
@@ -25,7 +25,7 @@ function GetPlayerBearing()
 	if not obj then return; end

 	-- If we've found what we were looking for, rewrite function to skip the search next time.
-	GetPlayerBearing = function() return (1-obj:GetFacing()/math.pi/2)*360; end
+	GetPlayerBearing = function() return (obj:GetFacing()); end
 	return GetPlayerBearing();
 end