From 5868b1149786eaddb90d0741d2c6288f36aafcd1 Mon Sep 17 00:00:00 2001 From: Harry Ramsey Date: Sun, 24 Feb 2019 00:36:54 +0000 Subject: [PATCH] Simple Fix to Bot.cs A while ago SteamAuth was updated and removed the field "Description" and it was replaced with ConfType. Obviously when SteamAuth was installed, it would cause an error. ConfType acts the same as Description. --- SteamBot/Bot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SteamBot/Bot.cs b/SteamBot/Bot.cs index 2a371cad7..b0cceb558 100644 --- a/SteamBot/Bot.cs +++ b/SteamBot/Bot.cs @@ -809,7 +809,7 @@ public void AcceptAllMobileTradeConfirmations() { if (SteamGuardAccount.AcceptConfirmation(confirmation)) { - Log.Success("Confirmed {0}. (Confirmation ID #{1})", confirmation.Description, confirmation.ID); + Log.Success("Confirmed {0}. (Confirmation ID #{1})", confirmation.ConfType, confirmation.ID); } } }