diff --git a/OpenRA.FileFormats/Primitives/Pair.cs b/OpenRA.FileFormats/Primitives/Pair.cs index 378fcd91ed..b503835ecc 100644 --- a/OpenRA.FileFormats/Primitives/Pair.cs +++ b/OpenRA.FileFormats/Primitives/Pair.cs @@ -56,6 +56,11 @@ namespace OpenRA.FileFormats public static U AsSecond(Pair p) { return p.Second; } public Pair Swap() { return Pair.New(Second, First); } + + public override string ToString() + { + return "({0},{1})".F(First, Second); + } } public static class Pair