diff --git a/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs b/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs index e601e6e26..f1b5d2e71 100644 --- a/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs +++ b/src/Artemis.Core/Exceptions/ArtemisPluginLockException.cs @@ -14,7 +14,7 @@ public class ArtemisPluginLockException : Exception private static string CreateExceptionMessage(Exception? innerException) { return innerException != null - ? "Found a lock file, skipping load, see inner exception for last known exception." - : "Found a lock file, skipping load."; + ? "Found a lock file, skipping automatic load, see inner exception for last known exception. Please manually re-enable the plugin." + : "Found a lock file, skipping automatic load. Please manually re-enable the plugin."; } } \ No newline at end of file