Updated /f map compass to use new official north

This commit is contained in:
Brettflan 2012-01-11 18:18:41 -06:00
parent bb8ae0a99c
commit bf69f6fd01

@ -38,7 +38,7 @@ public class AsciiCompass
public static AsciiCompass.Point getCompassPointForDirection(double inDegrees)
{
double degrees = (inDegrees - 90) % 360 ;
double degrees = (inDegrees - 180) % 360 ;
if (degrees < 0)
degrees += 360;