From 4202b3ea58ca8ddb4c3e227b85a06106b766897d Mon Sep 17 00:00:00 2001
From: ZZYZX <zzyzx@virtual>
Date: Wed, 8 Jul 2020 18:25:22 +0300
Subject: [PATCH] Add new random quote to exception dialog

---
 Source/Core/Windows/ExceptionDialog.cs | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/Source/Core/Windows/ExceptionDialog.cs b/Source/Core/Windows/ExceptionDialog.cs
index 229bfbb91..6145fb5b6 100755
--- a/Source/Core/Windows/ExceptionDialog.cs
+++ b/Source/Core/Windows/ExceptionDialog.cs
@@ -132,8 +132,9 @@ namespace CodeImp.DoomBuilder.Windows
 				"Something happened",
 				"The Device is Error",
 				"Worship me, and I may yet be merciful... then again, maybe not.",
- 				"EXTERMINATE"
-			};
+ 				"EXTERMINATE",
+                "What you spend years building may be destroyed overnight; build it anyway"
+            };
 
 			this.Text = titles[new Random().Next(0, titles.Length - 1)];
 			bContinue.Enabled = !isterminating;
-- 
GitLab