remove sillyness in DelayedAction.CompareTo

This commit is contained in:
Chris Forbes
2011-12-27 21:48:42 +13:00
parent 2793d1076a
commit 0aa7ba6bd4

View File

@@ -56,7 +56,7 @@ namespace OpenRA.FileFormats
public int CompareTo(DelayedAction other) public int CompareTo(DelayedAction other)
{ {
return Math.Sign(Time - other.Time); return Time.CompareTo(other.Time);
} }
} }
} }