From e1602cbe97ffebe88a1026bfb163e04cf17c6edf Mon Sep 17 00:00:00 2001 From: Noah Pilarski <megapiggy@outerwildsmods.com> Date: Fri, 30 Aug 2024 21:19:11 -0400 Subject: [PATCH] Say which versions they are --- Winch/Core/ModAssembly.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Winch/Core/ModAssembly.cs b/Winch/Core/ModAssembly.cs index 32dbf456..79df27c4 100644 --- a/Winch/Core/ModAssembly.cs +++ b/Winch/Core/ModAssembly.cs @@ -108,7 +108,7 @@ internal void CheckCompatibility() throw new FormatException("MinWinchVersion not in correct format."); if (!VersionUtil.IsSameOrNewer(winchVer, minVer)) - throw new Exception("Mod requires a version of Winch higher than the one installed."); + throw new Exception($"Mod requires a version ({minVer}) of Winch higher than the one installed ({winchVer})."); } }