diff --git a/ArchiSteamFarm/Plugins/IBotCardsFarmerInfo.cs b/ArchiSteamFarm/Plugins/IBotCardsFarmerInfo.cs index 318635af6..fd484a123 100644 --- a/ArchiSteamFarm/Plugins/IBotCardsFarmerInfo.cs +++ b/ArchiSteamFarm/Plugins/IBotCardsFarmerInfo.cs @@ -29,18 +29,18 @@ namespace ArchiSteamFarm.Plugins { /// /// Bot object related to this callback. /// Bool value indicating whether the module has finished successfully, so when there was at least one card to drop, and nothing has interrupted us in the meantime. - void OnBotFarmingFinished(Bot bot, bool farmedSomething); + void OnBotFarmingFinished([NotNull] Bot bot, bool farmedSomething); /// /// ASF will call this method when cards farming module is started on given bot instance. The module is started only when there are valid cards to drop, so this method won't be called when there is nothing to idle. /// /// Bot object related to this callback. - void OnBotFarmingStarted(Bot bot); + void OnBotFarmingStarted([NotNull] Bot bot); /// /// ASF will call this method when cards farming module is stopped on given bot instance. The stop could be a result of a natural finish, or other situations (e.g. Steam networking issues, user commands). /// /// Bot object related to this callback. - void OnBotFarmingStopped(Bot bot); + void OnBotFarmingStopped([NotNull] Bot bot); } }