mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Fix command mabadd working incorrectly (#2390)
* Fix command mabadd working incorrectly * Do the same for mabrm
This commit is contained in:
parent
862238f46b
commit
5cbc25c44e
1 changed files with 2 additions and 2 deletions
|
@ -1902,7 +1902,7 @@ namespace ArchiSteamFarm.Steam.Interaction {
|
|||
appIDs.Add(appID);
|
||||
}
|
||||
|
||||
return FormatBotResponse(Bot.BotDatabase.IdlingBlacklistedAppIDs.AddRange(appIDs) ? Strings.Done : Strings.NothingFound);
|
||||
return FormatBotResponse(Bot.BotDatabase.MatchActivelyBlacklistedAppIDs.AddRange(appIDs) ? Strings.Done : Strings.NothingFound);
|
||||
}
|
||||
|
||||
private static async Task<string?> ResponseMatchActivelyBlacklistAdd(ulong steamID, string botNames, string targetAppIDs) {
|
||||
|
@ -1960,7 +1960,7 @@ namespace ArchiSteamFarm.Steam.Interaction {
|
|||
appIDs.Add(appID);
|
||||
}
|
||||
|
||||
return FormatBotResponse(Bot.BotDatabase.IdlingBlacklistedAppIDs.RemoveRange(appIDs) ? Strings.Done : Strings.NothingFound);
|
||||
return FormatBotResponse(Bot.BotDatabase.MatchActivelyBlacklistedAppIDs.RemoveRange(appIDs) ? Strings.Done : Strings.NothingFound);
|
||||
}
|
||||
|
||||
private static async Task<string?> ResponseMatchActivelyBlacklistRemove(ulong steamID, string botNames, string targetAppIDs) {
|
||||
|
|
Loading…
Reference in a new issue