From 2747c4341be0a4dbbd2177661186bcabd0bfaf3b Mon Sep 17 00:00:00 2001 From: Ricardo Lopes Date: Wed, 5 Aug 2020 22:09:58 +0200 Subject: [PATCH] Add fatal message type --- OWML.Common/MessageType.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OWML.Common/MessageType.cs b/OWML.Common/MessageType.cs index b8b786cde..789c7c0a9 100644 --- a/OWML.Common/MessageType.cs +++ b/OWML.Common/MessageType.cs @@ -7,6 +7,7 @@ public enum MessageType Warning = 2, Info = 3, Success = 4, - Quit = 5 + Quit = 5, + Fatal = 6 } }