From 737a94475ad1613f73d031ac777f2dcaa8911b6f Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 31 Mar 2026 08:50:43 +0000
Subject: [PATCH] fix: clarify autodig switch log formatting
Agent-Logs-Url: https://github.com/MCCTeam/Minecraft-Console-Client/sessions/e83f9c2a-a85c-4763-821b-c5b4a0db75a6
Co-authored-by: milutinke <441903+milutinke@users.noreply.github.com>
---
MinecraftClient/ChatBots/AutoDig.cs | 4 ++--
.../Resources/Translations/Translations.Designer.cs | 2 +-
MinecraftClient/Resources/Translations/Translations.resx | 2 +-
3 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/MinecraftClient/ChatBots/AutoDig.cs b/MinecraftClient/ChatBots/AutoDig.cs
index 4af2d90d..148335d5 100644
--- a/MinecraftClient/ChatBots/AutoDig.cs
+++ b/MinecraftClient/ChatBots/AutoDig.cs
@@ -294,7 +294,7 @@ namespace MinecraftClient.ChatBots
int handSlot = 36 + GetCurrentSlot();
container.Items.TryGetValue(handSlot, out Item? currentTool);
- if (IsRecommendedTool(currentTool, recommendedTools) && currentTool is not null && HasEnoughDurability(currentTool))
+ if (currentTool is not null && IsRecommendedTool(currentTool, recommendedTools) && HasEnoughDurability(currentTool))
return true;
foreach (ItemType recommendedTool in recommendedTools)
@@ -307,7 +307,7 @@ namespace MinecraftClient.ChatBots
if (!SwapToolIntoHand(slot, handSlot))
return false;
- LogToConsole(GetTimestamp() + ": " + string.Format(Translations.bot_autodig_switch, slot, item.GetTypeString()));
+ LogToConsole(GetTimestamp() + ": " + string.Format(Translations.bot_autodig_switch, item.GetTypeString(), slot));
if (Config.Drop_Low_Durability_Tools && IsBelowDurabilityLimit(currentTool) &&
WindowAction(0, slot, WindowActionType.DropItemStack))
diff --git a/MinecraftClient/Resources/Translations/Translations.Designer.cs b/MinecraftClient/Resources/Translations/Translations.Designer.cs
index 8259988c..02447274 100644
--- a/MinecraftClient/Resources/Translations/Translations.Designer.cs
+++ b/MinecraftClient/Resources/Translations/Translations.Designer.cs
@@ -483,7 +483,7 @@ namespace MinecraftClient {
}
///
- /// Looks up a localized string similar to Switch to {1} from slot {0}..
+ /// Looks up a localized string similar to Switch to {0} from slot {1}..
///
internal static string bot_autodig_switch {
get {
diff --git a/MinecraftClient/Resources/Translations/Translations.resx b/MinecraftClient/Resources/Translations/Translations.resx
index 31e29fc8..c9c53ae6 100644
--- a/MinecraftClient/Resources/Translations/Translations.resx
+++ b/MinecraftClient/Resources/Translations/Translations.resx
@@ -256,7 +256,7 @@
Auto-digging has been stopped.
- Switch to {1} from slot {0}.
+ Switch to {0} from slot {1}.
Added item {0}