Add new random quote to exception dialog

This commit is contained in:
ZZYZX 2020-07-08 18:25:22 +03:00
parent 9abce031d7
commit 4202b3ea58

View file

@ -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;