Fix AutoDig mining timing

This commit is contained in:
Anon 2026-05-23 10:56:06 +02:00
parent 6331478e30
commit b74364d465
10 changed files with 1576 additions and 899 deletions

View file

@ -394,6 +394,24 @@ namespace MinecraftClient {
}
}
/// <summary>
/// Looks up a localized string similar to Apply Efficiency enchantment speed when AutoDig computes mining time. Disable this for strict anti-cheat compatibility..
/// </summary>
internal static string ChatBot_AutoDig_Apply_Efficiency_Enchantments {
get {
return ResourceManager.GetString("ChatBot.AutoDig.Apply_Efficiency_Enchantments", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Apply Haste and Conduit Power speed effects when AutoDig computes mining time. Disable this for strict anti-cheat compatibility..
/// </summary>
internal static string ChatBot_AutoDig_Apply_Haste_Effects {
get {
return ResourceManager.GetString("ChatBot.AutoDig.Apply_Haste_Effects", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Mining a block for more than &quot;Dig_Timeout&quot; seconds will be considered a timeout..
/// </summary>

View file

@ -242,6 +242,12 @@ For the naming of the block, please see https://mccteam.github.io/r/block/#L15</
<data name="ChatBot.AutoDig.Auto_Tool_Switch" xml:space="preserve">
<value>Automatically switch to the appropriate tool.</value>
</data>
<data name="ChatBot.AutoDig.Apply_Efficiency_Enchantments" xml:space="preserve">
<value>Apply Efficiency enchantment speed when AutoDig computes mining time. Disable this for strict anti-cheat compatibility.</value>
</data>
<data name="ChatBot.AutoDig.Apply_Haste_Effects" xml:space="preserve">
<value>Apply Haste and Conduit Power speed effects when AutoDig computes mining time. Disable this for strict anti-cheat compatibility.</value>
</data>
<data name="ChatBot.AutoDig.Dig_Timeout" xml:space="preserve">
<value>Mining a block for more than "Dig_Timeout" seconds will be considered a timeout.</value>
</data>