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"; } ///