diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-01-03 18:41:46 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2019-02-07 22:39:45 -0500 |
commit | e627a8a5e5a93df15a4a7c502231254e7c26c976 (patch) | |
tree | 6e1c2eb2cf92c297a772551de6d38d30415a4c51 /src/SMAPI/Framework | |
parent | 2287aeeb6580cab125d274e604115680a9b2daea (diff) | |
download | SMAPI-e627a8a5e5a93df15a4a7c502231254e7c26c976.tar.gz SMAPI-e627a8a5e5a93df15a4a7c502231254e7c26c976.tar.bz2 SMAPI-e627a8a5e5a93df15a4a7c502231254e7c26c976.zip |
avoid period after URLs in log output
Diffstat (limited to 'src/SMAPI/Framework')
-rw-r--r-- | src/SMAPI/Framework/SCore.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index 46e1de8d..ec3e9f72 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -982,7 +982,7 @@ namespace StardewModdingAPI.Framework catch (IncompatibleInstructionException) // details already in trace logs { string[] updateUrls = new[] { modDatabase.GetModPageUrlFor(manifest.UniqueID), "https://mods.smapi.io" }.Where(p => p != null).ToArray(); - errorReasonPhrase = $"it's no longer compatible. Please check for a new version at {string.Join(" or ", updateUrls)}."; + errorReasonPhrase = $"it's no longer compatible. Please check for a new version at {string.Join(" or ", updateUrls)}"; return false; } catch (SAssemblyLoadFailedException ex) |