Added WaW bot guid (#200)

may be PlutoniumT4 only.
This commit is contained in:
xerxes-at 2021-04-16 20:48:52 +02:00 committed by GitHub
parent e6d149736a
commit 74dbc3572f

View File

@ -365,12 +365,13 @@ namespace SharedLibraryCore
/// <summary> /// <summary>
/// determines if the guid provided appears to be a bot guid /// determines if the guid provided appears to be a bot guid
/// "1277538174" - (Pluto?)WaW (T4)
/// </summary> /// </summary>
/// <param name="guid">value of the guid</param> /// <param name="guid">value of the guid</param>
/// <returns>true if is bot guid, otherwise false</returns> /// <returns>true if is bot guid, otherwise false</returns>
public static bool IsBotGuid(this string guid) public static bool IsBotGuid(this string guid)
{ {
return guid.Contains("bot") || guid == "0"; return guid.Contains("bot") || guid == "0" || guid == "1277538174";
} }
/// <summary> /// <summary>