From 74dbc3572f6d58378191a9cf253ac2bd19d745b8 Mon Sep 17 00:00:00 2001 From: xerxes-at <5236639+xerxes-at@users.noreply.github.com> Date: Fri, 16 Apr 2021 20:48:52 +0200 Subject: [PATCH] Added WaW bot guid (#200) may be PlutoniumT4 only. --- SharedLibraryCore/Utilities.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SharedLibraryCore/Utilities.cs b/SharedLibraryCore/Utilities.cs index 03d28f6a3..2ce37529c 100644 --- a/SharedLibraryCore/Utilities.cs +++ b/SharedLibraryCore/Utilities.cs @@ -365,12 +365,13 @@ namespace SharedLibraryCore /// /// determines if the guid provided appears to be a bot guid + /// "1277538174" - (Pluto?)WaW (T4) /// /// value of the guid /// true if is bot guid, otherwise false public static bool IsBotGuid(this string guid) { - return guid.Contains("bot") || guid == "0"; + return guid.Contains("bot") || guid == "0" || guid == "1277538174"; } ///