1
0
Fork 0

Modified Files:

groundcache.cxx: Return cat start and end in the correct order.
	That makes the seahawk carrier start capable again ...
This commit is contained in:
frohlich 2007-01-06 16:20:49 +00:00
parent eff14788a7
commit 56382700f0

View file

@ -578,7 +578,7 @@ public:
// Trick to get the ends in the right order.
// Use the x axis in the original coordinate system. Choose the
// most negative x-axis as the one pointing forward
if (v1[0] < v2[0]) {
if (v1[0] > v2[0]) {
cat.start = gv1;
cat.end = gv2;
} else {